Stacker
Stacker

Reputation: 8237

Getting QueryStrings from WebRequest

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....

Upvotes: 2

Views: 1585

Answers (1)

m.edmondson
m.edmondson

Reputation: 30922

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

Upvotes: 5

Related Questions