ASP.NET – Passing JSON from jQuery to ASHX

I know this is too old, but just for the record I’d like to add my 5 cents

You can read the JSON object on the server with this

string json = new StreamReader(context.Request.InputStream).ReadToEnd();

Leave a Comment