asp.net请求超时错误

 

   web.config

  <compilation debug="false">

 

<location path="Site/test.aspx">
    <system.web>
      <httpRuntime executionTimeout="1" />
    </system.web>
  </location>

单位是秒。

 

tes.aspx页面

        System.Threading.AutoResetEvent autoResetEvent = new System.Threading.AutoResetEvent(false);
        autoResetEvent.WaitOne();

 

iis默认是120秒

asp.net默认是110秒。

你可能感兴趣的:(asp.net,Path,IIS)