There is various way to do the page redirection in asp.net.
asp.net;
1. HTML you can use anchor tag
<a href="Default2.aspx">Click to navigate to Default2</a>
1. HTML you can use anchor tag
<a href="Default2.aspx">Click to navigate to Default2</a>
2. C#; doing redirection from response.redirect.
Response.Redirect("Default2.aspx");
3. Another way also to do the redirection is Server.Transfar
Server.Transfer("Default2.aspx");
No comments:
Post a Comment