Web.Config
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. <?xml version="1.0"?>
  2. <!-- 
  3.     Note: As an alternative to hand editing this file you can use the 
  4.     web admin tool to configure settings for your application. Use
  5.     the Website->Asp.Net Configuration option in Visual Studio.
  6.     A full list of settings and comments can be found in 
  7.     machine.config.comments usually located in 
  8.     WindowsMicrosoft.NetFrameworkv2.xConfig 
  9. -->
  10. <configuration>
  11. <appSettings>
  12. </appSettings>
  13. <system.web>
  14. <!-- 
  15.             Set compilation debug="true" to insert debugging 
  16.             symbols into the compiled page. Because this 
  17.             affects performance, set this value to true only 
  18.             during development.
  19.         -->
  20. <compilation debug="true">
  21. <assemblies>
  22. <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  23. <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  24. <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  25. <add assembly="System.Runtime.Remoting, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  26. <add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  27. <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  28. </assemblies>
  29. </compilation>
  30. <!--
  31.             The <authentication> section enables configuration 
  32.             of the security authentication mode used by 
  33.             ASP.NET to identify an incoming user. 
  34.         -->
  35. <authentication mode="Windows"/>
  36. <authorization>
  37. </authorization>
  38. <!--
  39.             The <customErrors> section enables configuration 
  40.             of what to do if/when an unhandled error occurs 
  41.             during the execution of a request. Specifically, 
  42.             it enables developers to configure html error pages 
  43.             to be displayed in place of a error stack trace.
  44.         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
  45.             <error statusCode="403" redirect="NoAccess.htm" />
  46.             <error statusCode="404" redirect="FileNotFound.htm" />
  47.         </customErrors>
  48.         -->
  49. </system.web>
  50. <system.codedom>
  51. </system.codedom>
  52. <system.webServer>
  53. </system.webServer>
  54. </configuration>