R
Robert Bravery
HI all,
I retrive an response from an aspx page and store the resultant html into an
string object like:
string response = Encoding.UTF8.GetString(responseBytes);
this html page has form data in it, name value pairs. I need to get this
data and post it to another aspx page.
I know I can use webclient to post the formdata, but how do I get that into
a NameValueCollection so I can post it to another aspx page
Thanks
Robert
I retrive an response from an aspx page and store the resultant html into an
string object like:
string response = Encoding.UTF8.GetString(responseBytes);
this html page has form data in it, name value pairs. I need to get this
data and post it to another aspx page.
I know I can use webclient to post the formdata, but how do I get that into
a NameValueCollection so I can post it to another aspx page
Thanks
Robert