What Is the Difference Between Asp:HyperLink &
Asp:LinkButton
Asp:HyperLink
Navigation
This Can use for navigation.
Eg :- <asp:HyperLink ID="HyperLink1"
runat="server"
NavigateUrl="~/Default.aspx" >Home</asp:HyperLink>
PostBack
The HyperLink will not PostBack your page to the server. It
will post a simple request to the server for the URL you set as NavigateUrl.
OnClick event
The HyperLink doesn't have
the OnClick event.
Asp:LinkButton
...
More