I\'m looking for the simplest way of converting a query string from an HTTP GET request into a Dictionary, and back again.
I figure it\'s easier to carry out various
Here is how I usually do it
Dictionary parameters = HttpContext.Current.Request.QueryString.Keys.Cast() .ToDictionary(k => k, v => HttpContext.Current.Request.QueryString[v]);