hi
i have used:
<META HTTP-EQUIV=Refresh CONTENT='5; URL=admin_tools.asp'>
this used to work fine...but is there any new method( something new in asp.net) to perform auto redirection after a specific seconds.
thnx..
yash.
Printable View
hi
i have used:
<META HTTP-EQUIV=Refresh CONTENT='5; URL=admin_tools.asp'>
this used to work fine...but is there any new method( something new in asp.net) to perform auto redirection after a specific seconds.
thnx..
yash.
You'll end up with that piece of code anyways. Why do you want to change it anyways, if it works?
just checking if .Net has provided any object for this too :bigyello:
No. The only redirection possible (Response.Redirect) is on the server during the time the client is connected (processing a request). What you are describing is client-side redirection - and that still relies on meta refreshes or javascript.Quote:
Originally Posted by yashsays