PDA

Click to See Complete Forum and Search --> : auto redirection to another page


yashsays
Mar 16th, 2005, 12:39 AM
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.

mendhak
Mar 16th, 2005, 01:21 AM
You'll end up with that piece of code anyways. Why do you want to change it anyways, if it works?

yashsays
Mar 16th, 2005, 04:24 AM
just checking if .Net has provided any object for this too :bigyello:

nemaroller
Mar 16th, 2005, 07:20 AM
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.

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.