Simple question: I need to increase the timeout for an ashx.
The default value is 100,000 milliseconds (100 seconds).
You could just increae the server timeout:
public void ProcessRequest(HttpContext context)
    {
        context.Server.ScriptTimeout = 3600;
        context.Response.ContentType = "text/plain";
        context.Response.Write("Hello World");
    }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With