web.config
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:1k
- <?xml version="1.0"?>
- <!-- == FILE ==================================================================
- // name : Web.Config
- // project : Itenso Web User Forms
- // created : Jani Giannoudis - 2008.10.30
- // language : ASP.NET
- // environment: .NET 2.0
- // copyright : (c) 2008 by Itenso GmbH, Switzerland
- =============================================================================== -->
- <configuration>
- <system.web>
- <!-- theming ************************************************************** -->
- <pages theme="Default" />
- <!-- compilation **********************"""********************************* -->
- <compilation debug="true">
- <assemblies>
- <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
- </assemblies>
- </compilation>
- <!-- profile ************************************************************** -->
- <authentication mode="None" />
- <!-- http modules ********************************************************* -->
- <httpModules>
- <remove name="WindowsAuthentication" />
- <remove name="FormsAuthentication" />
- <remove name="PassportAuthentication" />
- <remove name="RoleManager" />
- <remove name="UrlAuthorization" />
- <remove name="FileAuthorization" />
- </httpModules>
-
- </system.web>
- </configuration>
- <!-- == EOF =================================================================== -->