简单问题: 我需要增加一个ashx的超时。
答案 0 :(得分:12)
您可以增加服务器超时:
public void ProcessRequest(HttpContext context)
{
context.Server.ScriptTimeout = 3600;
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}