用httpwebrequest要注意的东西

post方法访问站点,要注意的是:post一定要是大写,不然报403错误.
对于aspx网页一定要注意viewstate,如果不post viewstate,后台程序是不会处理的.

HttpWebRequest myHttpWebRequest =
    (HttpWebRequest)WebRequest.Create("http://192.168.31.20/action/WebForm1.aspx");
   myHttpWebRequest.Method="POST";
   string postData="TextBox1="+textBox1.Text;
   System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding();
   byte[]  byte1=encoding.GetBytes(postData);
     myHttpWebRequest.ContentType="application/x-www-form-urlencoded";
    myHttpWebRequest.ContentLength=postData.Length;
   System.IO.Stream newStream;
    newStream=myHttpWebRequest.GetRequestStream();
    newStream.Write(byte1,0,byte1.Length);
      newStream.Close();
   System.Net.WebResponse wResp =myHttpWebRequest.GetResponse();
   System.IO.Stream respStream  = wResp.GetResponseStream();
   System.IO.StreamReader reader = new System.IO.StreamReader(respStream,

    System.Text.Encoding.GetEncoding("gb2312"));
   textBox2.Text=reader.ReadToEnd();
   respStream.Close();
   reader.Close();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值