How to get entire querystring

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
How can I trap the entire url with querystring that is pased to a page? I
want to check the values of my variables and to see the entire url.

Thanks
 
Request.QueryString gives you a collection of all URL-passed variables.
Request.Url gives you the entire requested URL (including the querystring).

HTH, Jakob.
 
Thanks

Jakob Christensen said:
Request.QueryString gives you a collection of all URL-passed variables.
Request.Url gives you the entire requested URL (including the querystring).

HTH, Jakob.
 
Back
Top