标签:inputstream c#
接收端通过Request.InputStream读取请求页面参数,最终的字符串。
byte[] byts = new byte[HttpContext.Current.Request.InputStream.Length];
HttpContext.Current.Request.InputStream.Read(byts, 0, byts.Length);标签:inputstream c#
原文地址:http://blog.csdn.net/wjbaiverson/article/details/38874427