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
原文地址:http://www.cnblogs.com/mili3/p/3833659.html