Author: noaml Date: 2006-12-19 11:14:48 -0500 (Tue, 19 Dec 2006) New Revision: 69749
Added: trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Administration/Web.config Log: Added Web.config Added: trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Administration/Web.config =================================================================== --- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Administration/Web.config 2006-12-19 16:14:21 UTC (rev 69748) +++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Administration/Web.config 2006-12-19 16:14:48 UTC (rev 69749) @@ -0,0 +1,49 @@ +<?xml version="1.0"?> + +<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> + + <appSettings> + + <!-- + ***** Defaulf is False ***** + <add key="allowRemoteConfiguration" value="False" />--> + </appSettings> + <connectionStrings/> + + <system.web> + <!-- + Set compilation debug="true" to insert debugging + symbols into the compiled page. Because this + affects performance, set this value to true only + during development. + --> + <roleManager enabled="true" /> + <compilation defaultLanguage="c#" debug="true"/> + <!-- + The <authentication> section enables configuration + of the security authentication mode used by + ASP.NET to identify an incoming user. + --> + <authentication mode="Forms" /> + <!-- + The <customErrors> section enables configuration + of what to do if/when an unhandled error occurs + during the execution of a request. Specifically, + it enables developers to configure html error pages + to be displayed in place of a error stack trace. + + <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> + <error statusCode="403" redirect="NoAccess.htm" /> + <error statusCode="404" redirect="FileNotFound.htm" /> + </customErrors> + --> + + <siteMap> + <providers> + <add siteMapFile="web.sitemap" name="AspNetConfigXmlSiteMapProvider" + type="Mainsoft.Web.Administration.CustomXmlSiteMapProvider" /> + </providers> + </siteMap> + + </system.web> +</configuration> _______________________________________________ Mono-patches maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-patches
