Is there a way to get all the querystring name/value pairs into a collection?
I'm looking for a built in way in .net, if not I can just split on the & and load a collection.
Yes, use the HttpRequest.QueryString collection:
HttpRequest.QueryString
Gets the collection of HTTP query string variables.
You can use it like this:
foreach (String key in Request.QueryString.AllKeys) { Response.Write("Key: " + key + " Value: " + Request.QueryString[key]); }
1.4m articles
1.4m replys
5 comments
57.0k users