- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
在IIS 6.0中设置文件上传大小的方法,只要设置httpRuntime就可以了 <system.web> <httpRuntime executionTimeout="36000" maxRequestLength="2097151"/> <!--maxRequestLength:上传的大小,单位K ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) --> </system.web> 但在IIS7中,设置如上设置后,不管设置多大数值,最大上传了限制为30M,还需要下面的设置。 <system.webServer> <!--文件上传大小配置(针对IIS7),maxAllowedConenLength 单位byte--> <security> <requestFiltering> <requestLimits maxAllowedContentLength="1048576000"></requestLimits> </requestFiltering> </security> </system.webServer> 如果上传了超过限制大小的文件,列如在kindeditor的上传会报错404页面。 |
售前咨询
售后咨询
备案咨询
二维码
TOP