vote up 0 vote down star

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?

flag

48% accept rate

4 Answers

vote up 0 vote down

Lets say you have a property given below to enable header in Master Page:

Master Page Code:

Public Property EnablePageHeader() As Boolean
	Get
		If ViewState("EnablePageHeader") Is Nothing Then
			ViewState("EnablePageHeader") = True
		End If
		Return DirectCast(ViewState("EnablePageHeader"), Boolean)
	End Get
	Set(ByVal value As Boolean)
		ViewState("EnablePageHeader") = value
	End Set
End Property

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,

link|flag
Is DefaultMaster the value of TypeName? If so, please see my comment for Kevin earlier. – unknown (yahoo) Oct 22 at 16:19
vote up 0 vote down

You can use Strongly Typed Master Pages. Also, see here.

link|flag
vote up 0 vote down

You can use

Page.Master

You can than cast that property to your specific masterpage type.

link|flag
vote up 1 vote down

This should do it:

    var masterPage = ((MasterPageType)Master);
or to access the function:
    ((MasterPageType)Master).SomeFunction();

You might have to set the master page file in your base page programmatically as well. We do it in the OnPreInit function.

this.MasterPageFile = "~/masterPage.master";
link|flag
The content pages have the following: <%@ MasterType VirtualPath="~/Shared/MyMaster.master" %> They don't have the TypeName attribute set. I assume I have to do this? – unknown (yahoo) Oct 21 at 18:19

Your Answer

Get an OpenID
or

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