在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
全局超时时间 复制代码 代码如下: <httpRuntime executionTimeout="90" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" /> 单个站点超时时间 Web.config配置文件中设置http请求运行时间: 复制代码 代码如下: <system.web> <httpRuntime maxRequestLength="102400" executionTimeout="720" /> </system.web> 这里设置的为720秒,前面的属性maxRequestLength一般用于用户上传文件限制大小!默认一般为4096 KB (4 MB)。 单个页面请求超时时间 对于单个页面,可以使用Server.ScriptTimeout来设定超时。 复制代码 代码如下: Server.ScriptTimeout = 120; 注意:如果在Web.config里设置了debug属性,例如:<compilation debug="true" targetFramework="4.0"> 此时,ScriptTimeout会被忽略。 |
请发表评论