I have following environment:

  • masterpage with a contentPlacholder
  • multiple pages which use this masterpage and implement a base-class (fooPage)
  • fooPage has a certain property (fooProperty)

Now i want to do something like

public partial class FooMaster : System.Web.UI.MasterPage
{
    // this is originally from the designer-file
    protected global::System.Web.UI.WebControls.ContentPlaceHolder ContentPlaceHolder;

    protected override void OnPreRender(System.EventArgs e)
    {
        var fooPageInstance = this.ContentPlaceHolder as fooPage;
        var fooPropertyInstance = fooPageInstance.fooProperty;
        // TODO do something with the property
    }
}

Obviously this is not going to work - but how can I achieve this?

I know the alternative: call a method from the masterPage in the contentPage with fooProperty as a parameter - but i would like to rather have a pull-system in this case...

Thanks in advance!

link|improve this question

@abatishchev: thanks for the edit, but it was kinda unneeded to remove the namespace from System.Web.UI.MasterPage... i include namespaces for clarity purposes! btw. why not give page an uppercase P?? :) – Andreas Niedermair Feb 10 '11 at 13:55
feedback

2 Answers

You can use MasterType attribute on master page.

See : http://msdn.microsoft.com/en-us/library/c8y19k6h.aspx

link|improve this answer
-, and how is this related to the question?? – Andreas Niedermair Feb 10 '11 at 10:55
@Andreas: When you use a @ MasterType directive, such as the one in the example, you can reference members on the master page as in the following example: CompanyName.Text = Master.CompanyName; – Madhur Ahuja Feb 10 '11 at 10:56
is i've mentioned in my question: i do not want to use push systems! the problem is, i want to access properties of the contentPage from the masterPage (opposite direction!) – Andreas Niedermair Feb 10 '11 at 12:01
feedback
up vote 0 down vote accepted
public partial class FooMaster : System.Web.UI.MasterPage
{
    // this is originally from the designer-file
    protected global::System.Web.UI.WebControls.ContentPlaceHolder ContentPlaceHolder;

    protected override void OnPreRender(System.EventArgs e)
    {
        var fooPageInstance = this.ContentPlaceHolder.BindingContainer as FooPage;
        var fooPropertyInstance = fooPageInstance.fooProperty;
        // TODO do something with the property
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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