代码如下:
<system.web>
<httpRuntime requestValidationMode="2.0" maxRequestLength="51200" executionTimeout="60" appRequestQueueLimit="100" />
</system.web>
在使用IIS7后,除了进行以上配置外,还需要注意到
选中一个虚拟目录,选择功能视图----双击请求筛选---右键选择编辑功能测试,里面有一项是允许的最大内容长度,默认是30M
也就是说,在使用IIS7后,如果你想上传50M的附件,你得修改以上两个地方才行
方法/步骤本文以win2012下的IIS8.0为例。
鼠标移至桌面最最左下角,d出开始菜单,点击左键。
点击iis管理器,并选中您的网站。
点击“管理”下的“配置编辑器”。
设置上传超时时间限制。
点击下拉菜单节(S),选中system.web>httpRuntime
将executionTimeout的值设为00:30:00(即30分钟)
设置上传文件大小限制。
点击下拉菜单节(S),选中system.webServer>security>requestFiltering
展开requestlimits,将maxAllowedContentLength的值设为102400000(即100m)
注:这样修改直接就能生效,无需重启iis或者服务器。
也可以直接在网站根目录建一个web.config文件,用此方法可以直接省略前5步,web.config内容具体如下
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="102400000" />
</requestFiltering>
</security>
</system.webServer>
<system.web>
<httpRuntime executionTimeout="1800" />
</system.web>
</configuration>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)