码迷,mamicode.com
首页 > 其他好文 > 详细

获取post发送过来的xml包

时间:2014-07-11 18:07:10      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:http   os   new   re   ar   c   

 if (Request.HttpMethod.ToLower() == "post")
 {
byte[] ar;
ar = new byte[this.Request.InputStream.Length];

this.Request.InputStream.Read(ar, 0 , ar.Length);

string sXML = this.Request.ContentEncoding.GetString(ar);
}

获取post发送过来的xml包,布布扣,bubuko.com

获取post发送过来的xml包

标签:http   os   new   re   ar   c   

原文地址:http://www.cnblogs.com/mili3/p/3833659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!