I'm using IIS on NT4.0 SP6a
The site is working fine.
The site is set to have 'index.asp' as the default document
so when the URL:
is entered you get 'index.asp'
as the default document. This works fine.
Now, if you type: or either case the site still displays but I cannot read the variable 'from'.
If I type: I can read the variable.
I use the x=Request.QueryString("from" to access this
variable.
Why does it not work for the default document syntax?
Security issue, syntax or bug?
Here is the beginning of index.asp file:
<%
if isempty(Request.QueryString("from") then
Session("Referrer" = "NONE"
else
Session("Referrer" = Ucase(Request.QueryString("from")
Response.Redirect("end if
%>
The site is working fine.
The site is set to have 'index.asp' as the default document
so when the URL:
is entered you get 'index.asp'
as the default document. This works fine.
Now, if you type: or either case the site still displays but I cannot read the variable 'from'.
If I type: I can read the variable.
I use the x=Request.QueryString("from" to access this
variable.
Why does it not work for the default document syntax?
Security issue, syntax or bug?
Here is the beginning of index.asp file:
<%
if isempty(Request.QueryString("from") then
Session("Referrer" = "NONE"
else
Session("Referrer" = Ucase(Request.QueryString("from")
Response.Redirect("end if
%>