Is there a way to get all the querystring name/value pairs into a collection?

asp.net, c#, collections, query-string

Solution

Yes, use the `HttpRequest.QueryString` collection:

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]);
}

Problem

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.

Original source

Related problems