URL GET variables

  • Thread starter Thread starter ByteCoder
  • Start date Start date
B

ByteCoder

I want to use GET variables in a URL to open a page, like this:
http://server01/site1/form.aspx?id1=23&id2=32423

Another ASPX page would receive some input and append the variables to
the URL. When it's done it would transfer the page to the user.
I know there are other ways to do this, but GET variables can be
bookmarked, which is very useful in this case.

Since the word GET is used quite often I can't find how to do it. An
explanation on which class to use or a link to a how-to/tutorial would
be appreciated.

Thanks in advance,

--
 
Request.QueryString.

GET is a Request method. The variables you're talking about are part of the
URL of the Request.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Everybody picks their nose,
But some people are better at hiding it.
 
Request.QueryString.

GET is a Request method. The variables you're talking about are part
of the URL of the Request.

Thank you, that is exactly what I was looking for.

--
 

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