Question : Get a HTTP POST with a C# Handler

Hi,

I'm writing a hander for a project in C#.
From an other side the handler get some data using a POST because of very large binary data.
This works fine with the code included but how about the NameValueCollection?
Before we need a post I just get the NameValueCollection from the QueryString.
NameValueCollection pair = context.Request.QueryString;
Is there a simular way for the POST?

Thanks,

Andre
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
if (context.Request.HttpMethod == "POST")
            {
                Stream RequestStream = context.Request.InputStream;
                byte[] PostData = new byte[context.Request.InputStream.Length];
                RequestStream.Read(PostData, 0, (int)context.Request.InputStream.Length);
                System.Text.ASCIIEncoding dummy = new System.Text.ASCIIEncoding();
                strData = dummy.GetString(PostData);
            }
Open in New Window Select All

Answer : Get a HTTP POST with a C# Handler

I've never written handlers but sureley there must be a context.Request.Form ?
Random Solutions  
 
programming4us programming4us