if(context.Request.InputStream!=null){byte[]postData=newbyte[context.Request.InputStream.Length];context.Request.InputStream.Read(postData,0,postData.Length);stringpostDataString=System.Text.Encoding.UTF8.GetString(postData);context.Response.Write(postDataString);}