2010-11-08 112 views

回答

12

你可以只increae服務器超時:

public void ProcessRequest(HttpContext context) 
    { 
     context.Server.ScriptTimeout = 3600; 
     context.Response.ContentType = "text/plain"; 
     context.Response.Write("Hello World"); 
    } 
+4

會,真正的工作?它不重寫所有頁面的腳本超時以及web.config中的設置嗎? – Patrik 2011-09-22 10:33:42