web.config
上传用户:woolgirl
上传日期:2020-04-18
资源大小:243k
文件大小:1k
- <?xml version="1.0"?><!--
- 注意: 除了手动编辑此文件以外,您还可以使用
- Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
- “网站”->“Asp.Net 配置”选项。
- 设置和注释的完整列表在
- machine.config.comments 中,该文件通常位于
- WindowsMicrosoft.NetFrameworkv2.xConfig 中
- --><configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
- <appSettings>
- <add key="CrystalImageCleaner-AutoStart" value="true" />
- <add key="CrystalImageCleaner-Sleep" value="60000" />
- <add key="CrystalImageCleaner-Age" value="120000" />
- </appSettings>
- <connectionStrings/>
- <system.web>
- <authentication mode="Windows"/>
- <!--
- 如果在执行请求的过程中出现未处理的错误,
- 则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
- 开发人员通过该节可以配置
- 要显示的 html 错误页
- 以代替错误堆栈跟踪。
- <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
- <error statusCode="403" redirect="NoAccess.htm" />
- <error statusCode="404" redirect="FileNotFound.htm" />
- </customErrors>
- -->
- <httpRuntime maxRequestLength="102400" executionTimeout="3600"/>
- </system.web>
- </configuration>