View Single Post
  #4 (permalink)  
Old 02-20-2007, 09:15 AM
Jordan's Avatar   
Jordan Jordan is offline
Administrator
 
Join Date: Nov 2005
Location: Hendersonville, NC
Posts: 9,199
Last Blog:
Ext JS or Ext GWT
Rep Power: 20
Jordan is just really niceJordan is just really niceJordan is just really niceJordan is just really nice
Send a message via ICQ to Jordan Send a message via AIM to Jordan Send a message via MSN to Jordan
Default

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
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog
The CodeCall Wiki is now fully integrated with vBulletin users! Check it out and add some new pages!
Reply With Quote