Kevind23,
Yes, stu9820's post should help you.
But If you still want to do it in your way.
http://kevind23.com/errors/errorgene...?errortype=404
Within "ErrorGeneral.asp" you got to write something like
Code:
Dim ErrType
ErrType=Request.QueryString("ErrorType")
If Cint(ErrType)=404 then
Response.Redirect("404.asp")
ElseIf Cint(ErrType)=501 then
Response.Redirect("501.asp")
ElseIf...
...
End If
And put the content within 404.asp, 501.asp, etc...
404.asp '''''Should be coded to show what you wanted on that page.
-------
Sorry, but we couldn't find the page you were looking for. If the problem presists, contact the <email link>administrator</a>
Details:
Error 404: The page could not be found.
________________
Hope that helps.
Cheers!
_________________________
-Vijay G

Strive for Perfection
