0
Posted on 1:24 PM by prajeesh and filed under ,
In ASP.net we are using Response.Redirect or Server.Transfer for redirect to another page, this Redirection can also be done using Javascript or HTML
javascript:
  1. < language="javascript">  
  2.         window.location = "YourURL.aspx";  
  3.  < /script >  

Plain HTML(you can add following code between your <head> and </head> tags):
  1. < equivequiv="REFRESH" content="0;url=yourURL.aspx">  
Shout it kick it on DotNetKicks.com
0
Responses to ... Page redirection using javacript and HTML