Page.Master Property

Definition

Gets the master page that determines the overall look of the page.

C#
[System.ComponentModel.Browsable(false)]
public System.Web.UI.MasterPage Master { get; }

Property Value

The MasterPage associated with this page if it exists; otherwise, null.

Attributes

Remarks

The Master property returns the MasterPage object associated with this page. This property is read-only; however, you can set properties on the MasterPage object it returns.

The Master property is valid only on pages that reference a master page in the MasterPageFile property. If you access the Master property on a page that does not reference a master page, null is returned. The contents of a master page are not available until after the PreInit event has been raised.

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