您的位置:首页 > 其它

设置Web.config ,用以上传大于4M文件

2006-01-24 15:41 375 查看
Open your Web.config file, and just below the
<system.web>
tag, add the following tag:

<httpRuntime
executionTimeout="90"
maxRequestLength="40960"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"
/>
40960 可为 8192 for 8 Mb, 16384 for 16 Mb, 65536 for 64 Mb等等
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: