if we have a master page and a content page.so the content page @Page directive look like as

<%@ Page Language="C#" MasterPageFile="~/Site1.Master" .... />

so , in order to access master page controls in content page we should have to use

<%@ MasterType VirtualPath="~/Site1.Master" %>

so , my question is this why we use @MasterType directive when we already define in the @page directive that this content page is in the master page (here -- Site1.Master)

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

From MSDN you are defining the type of the MasterPage not just the Base class type of Master, it also allows you to access the MasterTypes properties directly.

Provides a way to create a strongly typed reference to the ASP.NET master page when the master page is accessed from the Master property.

this.Master.SomePublicPropertyOfMaster = Value;
link|improve this answer
@Lloyd..will you please tell me what do you mean by STRONGLY TYPE??since i am novice in programming so i have no idea about it... – Usman Jan 20 at 19:35
It means the Type is explicitly declared, so you do not need to cast it ie: MyMasterPage masterPage = (MyMasterPage)this.MasterPage. – Lloyd Jan 20 at 19:38
ok..thanks Lloyd i got it... – Usman Jan 20 at 19:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.