B
Bruce W..1
My web service needs a value from the request querystring. So I do a
string topic = Request.QueryString["topic"];
But Visual Studio says "The type or namespace name 'Request' could not
be found (are you missing a using directive or an assembly reference?)"
I tried using some more libraries but no luck. Does a web service have
a hypertext context?
How can I grab the querystring?
Thanks for your help.
string topic = Request.QueryString["topic"];
But Visual Studio says "The type or namespace name 'Request' could not
be found (are you missing a using directive or an assembly reference?)"
I tried using some more libraries but no luck. Does a web service have
a hypertext context?
How can I grab the querystring?
Thanks for your help.