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包
时间: 2024-10-25 17:50:56