Mar 29, 2002 #1 mgreer Programmer Jan 9, 2001 45 US I need to force a redirection to the 403-7.htm page. How can I do this in asp? Any help is appriciated.
I need to force a redirection to the 403-7.htm page. How can I do this in asp? Any help is appriciated.
Apr 2, 2002 #2 Dynapen Programmer Apr 20, 2000 245 US As long as the file is on the webserver, you should be able to just use.... response.redirect "../path of file" This has to be done before you write any HTML headers to the page, but this should do it. Upvote 0 Downvote
As long as the file is on the webserver, you should be able to just use.... response.redirect "../path of file" This has to be done before you write any HTML headers to the page, but this should do it.
Apr 2, 2002 Thread starter #3 mgreer Programmer Jan 9, 2001 45 US Thank you. I actually decided to use this technique: Response.Status = "403 Forbidden" Response.Write Response.Status Response.End Upvote 0 Downvote
Thank you. I actually decided to use this technique: Response.Status = "403 Forbidden" Response.Write Response.Status Response.End