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
QueryString property in HttpRequest class is actually NameValueCollection class. All you need to do is
QueryString
HttpRequest
NameValueCollection col = Request.QueryString;