The browser call..
http://127.0.0.1/MyApp/EvalPage.asp?...lly&type=orbit
MyApp is defined as an application in IIS...
The contents of EvalPage.asp...
<%@ Language=VBScript %>
<%option explicit
response.Write "Trainee= " & request("trainee") & " Evaluator= " &
request("evaluator") & " type= " & request("type")
response.Write "<br>query_string= " & request.ServerVariables("query_string")
response.Write "<br>request_uri= " & request.ServerVariables("request_uri")
response.Write "<br>path_info= " & request.ServerVariables("path_info")
response.Write "<br>path_translated= " &
request.ServerVariables("path_translated")
response.Write "<br>http_host= " & request.ServerVariables("http_host")
response.Write "<br>http_referer= " & request.ServerVariables("http_referer")
response.Write "<br>path= " & request.ServerVariables("path")
%>
The first time the URL listed above is requested the query_string is
returned as an empty string. Repaste the URL (cause the query_string gets
stripped) and the query_string is returned...k
"Bob Barrows [MVP]" wrote:
> WaterBug wrote:
> > Let me try to rephrase my problem. On a page call that invokes a new
> > unique application/session, the included query string (URL
> > parameters) that are passed are trashed, ignored, stripped (however
> > you want to say it). Is it true that the server's asp process will
> > ignore URL variables if the page invokes a new session? Is it
> > impossible to refer to URL parameters on the page that starts a
> > session. It appears I am unable to refer to URL parameters in an asp
> > page that invokes a session.
>
> Create a small page (or set of pages) that illustrates your problem. This
> description is hard to follow.
>
> --
> Microsoft MVP -- ASP/ASP.NET
> Please reply to the newsgroup. The email account listed in my From
> header is my spam trap, so I don't check it very often. You will get a
> quicker response by posting to the newsgroup.
>
>
>