Multiple choice technology web technology LinkButton Server Control behaves like a Label Hyperlink Link to another page Button Reveal answer Fill a bubble to check yourself D Correct answer Explanation A LinkButton control in ASP.NET renders as an anchor tag () in HTML, making it visually resemble a hyperlink. However, unlike a true hyperlink that navigates to a URL, the LinkButton performs a postback to the server when clicked, behaving like a Button control. This allows server-side code to execute in response to the click event while maintaining the appearance of a link.