Web.config 1.4 KB

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