Request.ServerVariables("Path_Info") + Request.ServerVariables("QUERY_STRING")

  • Thread starter Thread starter Christian Blackburn
  • Start date Start date
C

Christian Blackburn

Hi Gang,

I'm using the following code to generate a complete URL:
Session("Destination") = Request.ServerVariables("Path_Info") & "?" &
Request.ServerVariables("QUERY_STRING")

However that seems like a lot of work. Is there one command coming off
the request object that'll acomplish this?

Thanks,
Christian Blackburn
 
Christian,

See my previous question on the other message, this looks like you are using
not needed old ASP in ASPNET.

Cor
 
Back
Top