I have a few content pages that inherit from BasePage and use a Master Page.
From the BasePage.cs file, I need to call a method defined in the Master Page.
How would I do it?
|
|
I have a few content pages that inherit from BasePage and use a Master Page. From the BasePage.cs file, I need to call a method defined in the Master Page. How would I do it?
|
||
|
|
|
|
Lets say you have a property given below to enable header in Master Page: Master Page Code:
Now if you want to call this Property from any other base class or any other page then you can write code as follow: DirectCast(Master, DefaultMaster).EnablePageHeader = False Hope similar is the case of Methods too. Please respond if the code above helped you are if there is any mistake in it. Thanks, |
|||
|
|
|
You can use Strongly Typed Master Pages. Also, see here. |
||
|
|
|
|
You can use
You can than cast that property to your specific masterpage type. |
||
|
|
|
|
This should do it:
You might have to set the master page file in your base page programmatically as well. We do it in the OnPreInit function.
|
||
|