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);}