ASP.NET中突破上传4M文件的限制

http://www.itpob.cn

 

 

 

需要在服务器上修改如下文件

在目录C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG中找到web.config文件。这里的服务器是64位的,如果是32位则目录是C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG

 

在web.config中找到如下内容

<system.web>
        <authorization>
            <allow users="*"/>
        </authorization>

         .....

<authorization>上面插入一行

<httpRuntime executionTimeout="90" maxRequestLength="40960" useFullyQualifiedRedirectUrl="false"
minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100"/>

保存,成功!

你可能感兴趣的:(.net,Web,Microsoft,asp.net,asp)