turn a string into a querystring
C#
1
Posts
1
Posters
0
Views
1
Watching
-
hi all apologies first if I'm being dim here but.... i'm using XML-RPC to do send a request which is fine but the response I get back is basically a string in the format of a querystring eg ?foo=1&bar=2 is there a way I can *magically* turn this into a querystring to access the values returned to me ? Normally it would be foo = Request.QueryString["foo"]. Can I access the string as a series of name/value pairs or do I have to make the array myself from the string to access them ? TIA t