Forum Moderators: open
However I also get many emails telling me that index.asp?param1=abc¶m2=xyz does not exist. Telling me that a 404 error happened when this page was accessed. Now index.asp does exist, and even the parameters are usually correct, and when I try to access the page myself, I see it with no problems.
Does anyone know why this might be? I have shown the code of my 404 page below. I thought it might have meant the server was down when the page was accessed, but then the 404 page shouldn't work either?
Many thanks, here is the code:
---------------------------------
Response.Status = "404 Not Found"
dim pageRequested,gobjDB
with request
pageRequested = mid(.queryString, instr(.queryString,";") + 1)
end with
Call SendEmail(pageRequested)
----------------------------------