| Author: Bunty 29 Jun 2008 | Member Level: Diamond Points : 2 |
Hi,
Short and simple information on linkbutton and hyperlink.
If possible give some more information on linkbutton and hyperlink.
Thanks for sharing your knowledge.
Keep posting.
Thanks and Regards S.S.Bajoria
|
| Author: Shilpi Sharma 30 Jun 2008 | Member Level: Bronze Points : 2 |
Hi,
To the Web page visitor, a HyperLink control and a LinkButton control look identical. However, there is a significant difference in functionality.
The HyperLink control immediately navigates to the target URL when the user clicks on the control. The form is not posted to the server.
The LinkButton control first posts the form to the server, then navigates to the URL. If you need to do any server-side processing before going to the target URL, use a LinkButton.
On the other hand, if there is no server-side processing necessary, don't waste a round trip and use the HyperLink control.
Hoping this post is helpful for u
|