DeploymentSection::Retail Property
Gets or sets a value that specifies whether Web applications on the computer are deployed in retail mode.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute(L"retail", DefaultValue = false)] public: property bool Retail { bool get (); void set (bool value); }
Property Value
Type: System::Booleantrue if Web applications are deployed in retail mode; otherwise, false. The default is false.
When Retail is true, ASP.NET disables trace output, disables debug capabilities, and disables detailed system-generated error messages for remote users. For applications that have a customErrors element in the application Web.config file, the mode attribute is forced to On. These settings override any settings that are made in application Web.config files.
Note |
|---|
When you use the retail setting, you should continue to set the debug attribute to false in application Web.config files that are deployed to the server. The debug setting disables request execution timeout, and this is not overridden by the retail setting. For more information, see. Most Common ASP.NET Support issues - Reporting from deep inside Microsoft Developer Support on Scott Hanselman's blog. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note