Glenn Rathke
|
| Posted: 11/15/2002, 5:22 AM |
|
When a user attempts to go to a web page that they do not have access to,
they are instead directed to one with a generic message. I put a button on
that page, how do I redirected back to the main page?
Thanks
Glenn
|
|
|
 |
DonB
|
| Posted: 11/15/2002, 9:37 AM |
|
One way would be to let the "error" page refresh after a few seconds (try
this in the <head> section of your error page's HTML):
<META HTTP-EQUIV="REFRESH" CONTENT="5;
URL=http://www.sample.com/next.htm">"5" refers to the number of seconds to
delay going to "next.htm"
"Glenn Rathke" <grathke@attbi.com> wrote in message
news:ar2sdp$gsg$1@news.codecharge.com...
> When a user attempts to go to a web page that they do not have access to,
> they are instead directed to one with a generic message. I put a button on
> that page, how do I redirected back to the main page?
>
> Thanks
> Glenn
>
>
>
>
|
|
|
 |
|