making asynchronous calls from generic handler (.ashx)
问题 I have a form in my website which posts json to the async handler which validates the data and return back the resonse OK or error and i will make the redirect on the client based on the response give by my handler. But when the response is ok, i want to perform some tasks asynchronously. But the asynchronous calls are not working inside the .ashx code. it is always synchronous. Could you please give me an advice on this.? code: public class ValidateHandler : IHttpHandler,