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
If you have a querystring ONLY represented as a string, use HttpUtility.ParseQueryString to parse it into a NameValueCollection.
However, if this is part of a HttpRequest, then use the already parsed QueryString-property of your HttpRequest.