Answer:
It uses JavaScript internally and is rendered as HyperLink.
example: if a LinkButton with ID LinkButton1 is there and its Text is Click, then
the HTML rendered is as follows.
<a id="LinkButton1" href="javascript:_doPostBack('LinkButton1',' ')">Click</a>
javascript:_doPostBack() method is responsible for posting the form and the data
back to the server
Asked In: Many Interviews |
Alert Moderator