Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the easiest / standard way to retrieve the GET (in URL) variables passed to a .aspx (VB) page?

share|improve this question
Here is an example from SO on looping through the GET postback values. http://stackoverflow.com/questions/562943/looping-through-a-request-querystring‌​-in-vb-net – Zachary Jun 23 '09 at 16:08

2 Answers

up vote 13 down vote accepted

You can use the following:

http://www.whatever.com?hello=goodbye&goodbye=hello

string value = Request.QueryString["hello"]

Value will be goodbye

or

foreach(string key in Request.QueryString)
{
    Response.write(Request.QueryString[key])
}
share|improve this answer

Look at the Request.QueryString collection

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.