当前位置:首页 > ASP.NET技巧:设置上传文件的最大大小

ASP.NET技巧:设置上传文件的最大大小

点击次数:1153  更新日期:2010-12-25
\n

在web.config中添加httpRuntime元素,如下:
<configuration>
<system.web>
<httpRuntime maxRequestLength=”8192″
useFullyQualifiedRedirectUrl=”true”
executionTimeout=”45″
versionHeader=”1.1.4128″/>
</system.web>
</configuration>
其中maxRequestLength属性就是限制上传大小的,如设为”8192″即为8M。


\n

来源:网络

\n