|
|
|
|
Dot Net Interview Questions !!!
Interview Tips
on iGold.in
|
|
|
|
 |
Links
|
Tips and Tricks
Category :
Dotnet - General
|
|
|
|
How to load another url without postback
|
Set NavigateUrl property of HyperLink to achive this functionality.Navigate URL property won't create a postback. To check this have a Break Point in Page_Load and try clicking the hyperlink.Your page_Load won't trigger.
The Code
<asp:HyperLink ID="HyperLink1" NavigateUrl="~/ViewFiles.aspx" runat="server">HyperLink
</asp:HyperLink>
|
|