if (context.Request.InputStream != null) { byte[] postData = new byte[context.Request.InputStream.Length]; context.Request.InputStream.Read(postData, 0, postData.Length); string postDataString = System.Text.Encoding.UTF8.GetString(postData); context.Response.Write(postDataString); }
Copyright © 2009-2022 www.kswsj.com 成都快上网科技有限公司 版权所有 蜀ICP备19037934号