
Originally Posted by
Stoo
(*shudder* @ ASP, but that's what I've got to use...)
If the webserver is running anything less than IIS5 then this behaviour isn't supported. Also check your urlscan.ini to make sure it's not been disabled there.
You can debug in the page to see what is being given by the Request object...
Code:
With Response
For each thing in Request.Querystring
.write "<!-- Request.Querystring("" & thing & "") = " & Request.Querystring(thing) & " -->" & vbcrlf
Next
End with
This is of course assuming that default.asp IS listed as a default document. Double check that it is and that you don't have any other documents in the directory that would class as a default document, that are listed above default.asp (e.g. default.aspx, default.htm, etc).