C# 获取post 里面的数据

    技术2022-07-11  121

     public  String GetDate()         {             Stream s = System.Web.HttpContext.Current.Request.InputStream;             byte[] b = new byte[s.Length];             s.Read(b, 0, (int)s.Length);             return Encoding.UTF8.GetString(b);         }

    Processed: 0.009, SQL: 9