web.config
上传用户:woolgirl
上传日期:2020-04-18
资源大小:243k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. <?xml version="1.0"?><!-- 
  2.     注意: 除了手动编辑此文件以外,您还可以使用 
  3.     Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
  4.      “网站”->“Asp.Net 配置”选项。
  5.     设置和注释的完整列表在 
  6.     machine.config.comments 中,该文件通常位于 
  7.     WindowsMicrosoft.NetFrameworkv2.xConfig 中
  8. --><configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
  9. <appSettings>
  10.      <add key="CrystalImageCleaner-AutoStart" value="true" />
  11.      <add key="CrystalImageCleaner-Sleep" value="60000" />
  12.      <add key="CrystalImageCleaner-Age" value="120000" />
  13.  </appSettings>
  14. <connectionStrings/>
  15. <system.web>
  16. <authentication mode="Windows"/>
  17. <!--
  18.             如果在执行请求的过程中出现未处理的错误,
  19.             则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
  20.             开发人员通过该节可以配置
  21.             要显示的 html 错误页
  22.             以代替错误堆栈跟踪。
  23.         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
  24.             <error statusCode="403" redirect="NoAccess.htm" />
  25.             <error statusCode="404" redirect="FileNotFound.htm" />
  26.         </customErrors>
  27.         -->
  28. <httpRuntime maxRequestLength="102400" executionTimeout="3600"/>
  29. </system.web>
  30. </configuration>