首页 > 编程 > .NET > 正文

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

2024-07-10 13:10:11
字体:
来源:转载
供稿:网友
在web.config中添加httpruntime元素,如下:
<configuration>
   <system.web>
      <httpruntime maxrequestlength="8192"
         usefullyqualifiedredirecturl="true"
         executiontimeout="45"
         versionheader="1.1.4128"/>
   </system.web>
</configuration>
其中maxrequestlength属性就是限制上传大小的,如设为"8192"即为8m。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表