P
Prince
Given the following HTML form
<form method="Post" action="www.xyz.com">
<input type="hidden" name="xxx" value="hello">
</form>
If I wanted to somehow, in the page behind form of an
ASP.NET page, write code that would send the value,
hello, to that site www.xyz.com, how would I do it?
I've been searching the newsgroup but no one has quite
given a concrete example. My guess is that I would use
the HttpWebRequest object. But how exactly would this be
done?
thanks,
Prince
<form method="Post" action="www.xyz.com">
<input type="hidden" name="xxx" value="hello">
</form>
If I wanted to somehow, in the page behind form of an
ASP.NET page, write code that would send the value,
hello, to that site www.xyz.com, how would I do it?
I've been searching the newsgroup but no one has quite
given a concrete example. My guess is that I would use
the HttpWebRequest object. But how exactly would this be
done?
thanks,
Prince