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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top