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

编辑器/阅读器

开发平台:

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.   
  12.   <appSettings file="web.local.config">
  13.     <!-- misc app settings **************************************************** -->
  14.     <add key="FormsPath" value="~/UserForms" />
  15.     <add key="LookupItemText" value="Lookup Item {0}" />
  16.     <add key="LookupItemValue" value="LookupValue {0}" />
  17.     <add key="LookupItemCount" value="10" />
  18.   </appSettings>
  19.   <system.web>
  20.     <!-- theming ************************************************************** -->
  21.     <pages theme="Default" />
  22.     <!-- compilation **********************"""********************************* -->
  23.     <compilation debug="true">
  24.       <assemblies>
  25.         <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  26.       </assemblies>
  27.     </compilation>
  28.     <!-- profile ************************************************************** -->
  29.     <authentication mode="None" />
  30.     <!-- http modules ********************************************************* -->
  31.     <httpModules>
  32.       <remove name="WindowsAuthentication" />
  33.       <remove name="FormsAuthentication" />
  34.       <remove name="PassportAuthentication" />
  35.       <remove name="RoleManager" />
  36.       <remove name="UrlAuthorization" />
  37.       <remove name="FileAuthorization" />
  38.     </httpModules>
  39.     
  40.   </system.web>
  41. </configuration>
  42. <!-- == EOF =================================================================== -->