Page.Theme Property
Gets or sets the name of the page theme.
Assembly: System.Web (in System.Web.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException |
An attempt was made to set Theme after the PreInit event has occurred. |
| ArgumentException |
Theme is set to an invalid theme name. |
The Theme property sets the name of the theme used for the page. If you want the settings on the page to take precedence over the settings in the theme, use the StyleSheetTheme property. For more information, see ASP.NET Themes and Skins.
The Theme property must be set prior to the PreInit event; setting the Theme property after the PreInit event will cause an InvalidOperationException exception.
The specified theme must exist as either an application or a global theme. If the theme does not exist, an HttpException exception is thrown.
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.
- 9/9/2010
- Murphy.Wu
<pages theme="Default" controlRenderingCompatibilityVersion="4.0" clientIDMode="Static">
On the other hand, Page.StyleSheetTheme does apply the css files that you have located in the App_Themes/<Theme Name>path to the "Design" view. This is really useful because you can actually see a close representation of what your actual website will look like when designing the presentation with css in Visual Studio.
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">
- 6/24/2010
- Jeff Kissinger
- 6/24/2010
- Jeff Kissinger