7
簡單問題: 我需要增加ashx的超時時間。增加.ashx的超時時間
簡單問題: 我需要增加ashx的超時時間。增加.ashx的超時時間
你可以只increae服務器超時:
public void ProcessRequest(HttpContext context)
{
context.Server.ScriptTimeout = 3600;
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
會,真正的工作?它不重寫所有頁面的腳本超時以及web.config中的設置嗎? – Patrik 2011-09-22 10:33:42