Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
3.0 KiB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <system.web>
  4. <!-- DYNAMIC DEBUG COMPILATION
  5. Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to
  6. false will improve runtime performance of this application.
  7. Set compilation debug="true" to insert debugging symbols (.pdb information)
  8. into the compiled page. Because this creates a larger file that executes
  9. more slowly, you should set this value to true only when debugging and to
  10. false at all other times. For more information, refer to the documentation about
  11. debugging ASP .NET files.
  12. -->
  13. <compilation
  14. defaultLanguage="c#"
  15. debug="true"
  16. />
  17. <!-- CUSTOM ERROR MESSAGES
  18. Set customError mode values to control the display of user-friendly
  19. error messages to users instead of error details (including a stack trace):
  20. "On" Always display custom (friendly) messages
  21. "Off" Always display detailed ASP.NET error information.
  22. "RemoteOnly" Display custom (friendly) messages only to users not running
  23. on the local Web server. This setting is recommended for security purposes, so
  24. that you do not display application detail information to remote clients.
  25. -->
  26. <customErrors
  27. mode="RemoteOnly"
  28. />
  29. <!-- AUTHENTICATION
  30. This section sets the authentication policies of the application. Possible modes are "Windows", "Forms",
  31. "Passport" and "None"
  32. -->
  33. <authentication mode="Windows" />
  34. <!-- APPLICATION-LEVEL TRACE LOGGING
  35. Application-level tracing enables trace log output for every page within an application.
  36. Set trace enabled="true" to enable application trace logging. If pageOutput="true", the
  37. trace information will be displayed at the bottom of each page. Otherwise, you can view the
  38. application trace log by browsing the "trace.axd" page from your web application
  39. root.
  40. -->
  41. <trace
  42. enabled="false"
  43. requestLimit="10"
  44. pageOutput="false"
  45. traceMode="SortByTime"
  46. localOnly="true"
  47. />
  48. <!-- SESSION STATE SETTINGS
  49. By default ASP .NET uses cookies to identify which requests belong to a particular session.
  50. If cookies are not available, a session can be tracked by adding a session identifier to the URL.
  51. To disable cookies, set sessionState cookieless="true".
  52. -->
  53. <sessionState
  54. mode="InProc"
  55. stateConnectionString="tcpip=127.0.0.1:42424"
  56. sqlConnectionString="data source=127.0.0.1;user id=sa;password="
  57. cookieless="false"
  58. timeout="20"
  59. />
  60. <!-- GLOBALIZATION
  61. This section sets the globalization settings of the application.
  62. -->
  63. <globalization
  64. requestEncoding="utf-8"
  65. responseEncoding="utf-8"
  66. />
  67. </system.web>
  68. </configuration>