Lets say i have this:

WebRequest myWebRequest1 = (WebRequest)asynchronousResult.AsyncState;

i know that i can get the url like this myWebRequest1.RequestUri but i was wondering if there is any way to get the query strings using a better way than manualy parsing it , i mean something like myWebRequest1.QueryString[etc etc ]

any ideas ?

thanks in advance....

link|improve this question

68% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Try extracting the request URI as a string and using: HttpUtility.ParseQueryString(String)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.