web.config
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. <?xml version="1.0"?>
  2. <!-- == FILE ==================================================================
  3. // name       : Web.Config
  4. // project    : Itenso Web User Forms
  5. // created    : Jani Giannoudis - 2008.10.30
  6. // language   : ASP.NET
  7. // environment: .NET 2.0
  8. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  9. =============================================================================== -->
  10. <configuration>
  11.   <system.web>
  12.     <!-- theming ************************************************************** -->
  13.     <pages theme="Default" />
  14.     <!-- compilation **********************"""********************************* -->
  15.     <compilation debug="true">
  16.       <assemblies>
  17.         <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  18.       </assemblies>
  19.     </compilation>
  20.     <!-- profile ************************************************************** -->
  21.     <authentication mode="None" />
  22.     <!-- http modules ********************************************************* -->
  23.     <httpModules>
  24.       <remove name="WindowsAuthentication" />
  25.       <remove name="FormsAuthentication" />
  26.       <remove name="PassportAuthentication" />
  27.       <remove name="RoleManager" />
  28.       <remove name="UrlAuthorization" />
  29.       <remove name="FileAuthorization" />
  30.     </httpModules>
  31.     
  32.   </system.web>
  33. </configuration>
  34. <!-- == EOF =================================================================== -->