C # sends a simple HTTP POST request to a traditional ASP Web page.

Source: Internet
Author: User

Design ideas

Create an instance of the HttpWebRequest class, set the method property for this object to "POST", and the ContentType property to "application/x-/www-form-urlencoded". Add post data for the request to be initiated through the GetRequestStream () method and Stream.Write (). The corresponding HTTP response is then retrieved through the HttpWebRequest.GetResponse () method.

Example:

Use your own pages can be, here with Baidu to do examples. String url= "http://www.baidu.com";   String data = "Inputbox1=orange"; byte[] buffer = Encoding.ASCII.GetBytes (data); HttpWebRequest req = (HttpWebRequest) webrequest.create (URL); req. Method= "POST"; req. Contentype= "application/x-www-form-urlencoded"; req. Contenlength=buffer. Length; Stream Reqst = req. GetRequestStream (); Reqst. Write (Buffer,0,buffer. Length); Reqst. Flush (); Reqst. Close (); Console.WriteLine ("\ngrabbing ' orange '"); HttpWebResponse res = (HttpWebResponse) req. GetResponse (); Stream resst = Res. GetResponseStream (); StreamReader sr = new StreamReader (RESST); Console.WriteLine ("\ngrabbing HTTP response\n"); Console.wtiteline (Sr. ReadToEnd ()); Sr. Close (); resst. Close (); Console.WriteLine ("Done");

  

C # sends a simple HTTP POST request to a traditional ASP Web page.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.