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
Instead of converting HttpContext.Request.QueryString to a Dictionary<>, try using
HttpContext.Request.Query which already is a Dictionary