加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
web.config 700 Bytes
一键复制 编辑 原始数据 按行查看 历史
Devin 提交于 2018-03-23 11:24 . 添加文件夹上传支持和demo
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
<compilation debug="true" />
<pages enableViewState="false" enableViewStateMac="false" validateRequest="false">
</pages>
<!--<httpRuntime maxRequestLength="2048000000" executionTimeout="600" enableVersionHeader="false" requestValidationMode="2.0" />-->
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2048000000"></requestLimits>
</requestFiltering>
</security>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="3.00:00:00" />
</staticContent>
</system.webServer>
</configuration>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化