How to POST data to ASP.NET HttpHandler?

Posted by Ali Kazmi on Stack Overflow See other posts from Stack Overflow or by Ali Kazmi
Published on 2009-05-26T05:03:26Z Indexed on 2010/03/09 10:51 UTC
Read the original article Hit count: 585

Filed under:
|
|

Hi,

I am trying to send a large chunk of data over to a HTTP handler. I can't send it using GET because of the URL length limit so I decided to POST it instead. The problem is that I can't get at the values. context.Request.Form shows that it has 0 items. So is there a way that I can POST data to a HttpHandler?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about httphandler