Page.StyleSheetTheme Property
Gets or sets the name of the theme that is applied to the page early in the page life cycle.
Assembly: System.Web (in System.Web.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException |
An attempt was made to set the StyleSheetTheme property after the FrameworkInitialize method was called. |
| ArgumentException |
StyleSheetTheme is set to an invalid theme name. This exception is thrown when the FrameworkInitialize method is called, not by the property setter. |
This property does not refer directly to a cascading style sheet (CSS). The property contains the name of an ASP.NET theme, which can include CSS files within it.
The StyleSheetTheme property specifies the name of a theme that is applied to a page early in the page life cycle, whereas the Theme property specifies the name of a theme that is applied to a page later in the page life cycle. This means that settings on the page take precedence over settings in the style sheet theme. For more information, see ASP.NET Themes and Skins.
You typically set a value for this property in the page directive or by overriding the property. For information, see the following topics:
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.
In the Web.config the following is an example of setting your theme using StyleSheetTheme which applies the theme to the entire website (VS2010):
<pages styleSheetTheme="Default"controlRenderingCompatibilityVersion="4.0"clientIDMode="Static">
On the otherhand, if you use the Page.Theme property, the css files will not be applied to the Design view which makes it difficult to make any use of the Design view in Visual Studio. Below is an example of the Theme setting in the Web.config file which applies the theme to the entire website (VS2010):
<pages theme="Default" controlRenderingCompatibilityVersion="4.0" clientIDMode="Static">
- 6/24/2010
- Jeff Kissinger
- 6/24/2010
- Jeff Kissinger