首页 > Web开发 > 详细

HttpWebRequest用法实例

时间:2016-04-01 17:44:39      阅读:251      评论:0      收藏:0      [点我收藏+]

[HttpPost]       

  public ActionResult Setmobile()       

  {         

    string text = "<?xml version=‘1.0‘ encoding=‘UTF-8‘ standalone=‘yes‘ ?>";  根据需要的数据拼xml数据        

            string postData = text;//System.Web.HttpUtility.UrlEncode(text, System.Text.Encoding.UTF8);

            byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(postData);

            HttpWebRequest objWebRequest = (HttpWebRequest)WebRequest.Create("url"); //发送地址 http://localhost:7118/Server/Default.aspx

            objWebRequest.Method = "POST";//提交方式

            objWebRequest.ContentType = "application/x-www-form-urlencoded";

            objWebRequest.ContentLength = byteArray.Length;

            Stream newStream = objWebRequest.GetRequestStream(); // Send the data.

            newStream.Write(byteArray, 0, byteArray.Length); //写入参数

            newStream.Close();             return Content("上传成功!") ;         }

HttpWebRequest用法实例

原文:http://www.cnblogs.com/yinchuan/p/5345505.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!