首页 > 学院 > 开发设计 > 正文

ASP.NET超时设置

2019-11-18 17:04:19
字体:
来源:转载
供稿:网友
1.IIS->[网站]->属性-》连接超时。默认为120秒
2.WEB.CONFIG 手工添加httPRuntime,如
<system.web>
 <httpRuntime maxRequestLength="1000000" executionTimeout="2000" />
</system.web>
3.同步执行WEBSERVICE时,需要设置TIMEOUT属性,如
 CompilerSvr.MyFavoritesService compiler=new FDN.DMS.Controls.CompilerSvr.MyFavoritesService();
   compiler.Timeout =2000000; //毫秒
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表