Page.Theme Property

Definition

Gets or sets the name of the page theme.

C#
[System.ComponentModel.Browsable(false)]
public virtual string Theme { get; set; }

Property Value

The name of the page theme.

Attributes

Exceptions

An attempt was made to set Theme after the PreInit event has occurred.

Theme is set to an invalid theme name.

Examples

The following code example sets the Theme property to a name passed in the query string.

C#
void Page_PreInit(object sender, EventArgs e)
{
  // Get the theme name from a QueryString variable
  string ThemeName;
  ThemeName = Request.QueryString["thename"];
  if (ThemeName != null)
  {
    Page.Theme = ThemeName;
  }
}

Remarks

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also