You will use the HttpWebRequest, you need to set the Method property to "POST" or "GET", which will indicate that you are posting data. Also, you will have to call GetRequestStream, and write to the stream the content of the forms data.
You will need to set the ContentType property to
"application/x-www-form-urlencoded".
Also, you will need to find the names of the variables (name1 and name2 below are the names):
name1=value1&name2=value2
|