asp_web_howto thread: "If you are not automatically redirected..click on button below"
Message #1 by speedguru@m... on Sun, 25 Mar 2001 13:39:31
|
|
hi,
What's the best way to show a message and then redirect the user to a new
page
I want to accomplish the following which happens on most sites
"If you are not automatically redirected..click on button below"
I have not yet tried Server.Execute and Server.Transfer..Can i have code
for that and also a IIS-4 solution.
:-) rk
Message #2 by "Ken Schaefer" <ken@a...> on Wed, 28 Mar 2001 15:28:34 +1000
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: What's the best way to show a message and then redirect the user to a new
: page
:
: I want to accomplish the following which happens on most sites
:
: "If you are not automatically redirected..click on button below"
:
:
: I have not yet tried Server.Execute and Server.Transfer..Can i have code
: for that and also a IIS-4 solution.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nothing to do with Server.Execute or Server.Transfer:
<head>
<meta http-equiv="refresh" content="[int];URL=[URI]>
</head>
<body>
<a href="[URI]">Click here</a> it you are not automatically redirected
</body>
[int] = integer = num seconds
[URI] = string = URI
Cheers
Ken
|