I have created a httphandler. Everything is working fine If you take the request type GET. But I really don\'t want GET request due to security reasons.
I\'m a newbie when it comes to HTTP handlers and i\'m struggling to work out what the problemis with my current code
I am at a loss. We have a class that handles callbacks from client-side actions jQuery开发者_如何学Python.ajax({data: data, error: null, success: null, type: \"POST\", dataType: \'json\', url: \"/myl
I am trying to setup an asynchronous HttpHandler, but I have no idea if I am on the right track. There doesn\'t seem to be much documentation on it. I would just like to get the request to fire off th
I have an IHttpHandler serving dynamically generated files. I wish to respond to HEAD requests to let the client know whether the file has c开发者_开发百科hanged.
I\'m trying to get my head around this isReusable property of the IHttpHandler interface but need your help.
This is my code: class HandlerTest : IHttpHandler,System.Web.SessionState.IRequiresSessionState { public void ProcessRequest(HttpContext context)
I\'m developing a RIA application where there is javascript on the client (i\'m using Ext) and开发者_JS百科 .NET on the server, for json-rpc I\'m using Jayrock which is a nice library (at least for me
What\'s the best way to acces .resx files in a Http Handler in AS开发者_运维知识库P.NET? I need to access them in javascript. My goal is to serialize them in JSON via a IHttpHandler. The problem is t
I\'m implementing IHttpHandler and IRequiresSessionState and I\'m using context.Session but after I set up a value in Session, it\'s lost in the next request. What can I do to persist the values ?