1

我正在创建一个工资单应用程序,我必须处理 500 多名员工。当我在本地机器上运行应用程序时,它会运行应用程序并生成正确的信息。完成数据处理大约需要 3-4 分钟。当我将我的应用程序部署到IIS并尝试运行它时,我会收到以下错误:

“/”应用程序中的服务器错误。

请求超时。

说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

Exception Details: System.Web.HttpException: Request timed out.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[HttpException (0x80004005): Request timed out.]

我尝试更改该特定站点connection time out (seconds) to 600的高级设置,IIS但没有奏效。有什么建议吗?

4

1 回答 1

2

尝试更改 web.config 参数<httpRuntime executionTimeout="90"/> 90 - 以秒为单位的默认值,您需要设置更大的值

于 2013-10-21T18:39:45.800 回答