web。config 文件大小指定

来源:互联网 发布:南瓜 网络什么意思 编辑:程序博客网 时间:2024/06/06 13:02

可以在 次一级文件夹目录中指定上传文件的最大限制:

<configuration>

<!--配置文件上传为10m,只限制在frmMupload.aspx中,其他的为默认的4M。LENGTH以kb为单位

可以查看msdn中httpRuntime相应帮助,指定单独页面-->
      <location  path="frmMupload.aspx">
   <system.web>
 <httpRuntime maxRequestLength="10240"/>
   </system.web>

</location>

<!--管理员上传图片文件和附件的文件大小-->
    <location  path="frmMemail.aspx">
   <system.web>
 <httpRuntime maxRequestLength="10240"/>
   </system.web></location>
 
</configuration>

原创粉丝点击