Web.config
上传用户:guomengjz
上传日期:2022-06-06
资源大小:726k
文件大小:2k
源码类别:

搜索引擎

开发平台:

C/C++

  1. <?xml version="1.0"?>
  2. <configuration>
  3.   <appSettings>
  4.     <add key="ikey" value="totsearchengine01"/>
  5.   </appSettings>
  6. <connectionStrings/>
  7. <system.web>
  8. <!-- 
  9.             Set compilation debug="true" to insert debugging 
  10.             symbols into the compiled page. Because this 
  11.             affects performance, set this value to true only 
  12.             during development.
  13.         -->
  14. <compilation debug="false">
  15. </compilation>
  16. <!--
  17.             The <authentication> section enables configuration 
  18.             of the security authentication mode used by 
  19.             ASP.NET to identify an incoming user. 
  20.         -->
  21. <authentication mode="Forms"/>
  22. <!--
  23.             The <customErrors> section enables configuration 
  24.             of what to do if/when an unhandled error occurs 
  25.             during the execution of a request. Specifically, 
  26.             it enables developers to configure html error pages 
  27.             to be displayed in place of a error stack trace.
  28.         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
  29.             <error statusCode="403" redirect="NoAccess.htm" />
  30.             <error statusCode="404" redirect="FileNotFound.htm" />
  31.         </customErrors>
  32.         -->
  33. </system.web>
  34. <system.codedom>
  35. </system.codedom>
  36. <!-- 
  37.         The system.webServer section is required for running ASP.NET AJAX under Internet
  38.         Information Services 7.0.  It is not necessary for previous version of IIS.
  39.     -->
  40. <system.webServer>
  41. </system.webServer>
  42. </configuration>