vote up 0 vote down star
1

On one site, I'm only using a single level Masterpage and in a page using that master, I can do this.Master.FindControl("controlName") to access the control. Works fine.

However, using the same code on a site with two masterpage levels. MainMaster and SpecificMaster which has MainMaster as its Master.

So on the page which uses SpecificMaster, FindControl is returning null for the object. The only difference I'm seeing is the nesting of the masterpages.

When I set breakpoint and look at page.Master, it's showing SpecificMaster and SpecificMaster is showing MainMaster as its master correctly, but FindControl is still failing.

When I view source in IE, the control is correctly named, no .NET munging going on.

Any thoughts here?

TIA!

flag

Where is the control you are looking for? Is on Specific Master, or MainMaster? – Streklin Oct 16 at 13:58
SpecificMaster has the control. – peiklk Oct 16 at 14:17

2 Answers

vote up 1 vote down check

When you're nesting master pages, you'll get an extra container "Content" you need to look through.

As a result, if you're trying to use FindControl from a given child page the usual approach is something to the effect of:

Label myLabel = (Label)this.Master.FindControl("myLabel");
myLabel.Text = "Success!";

Since we have a nested master page, with "myLabel" in the child master, this control will be contained within a content control.

So, this changes the code to:

ContentPlaceHolder ph = (ContentPlaceHolder).this.Master.Master.FindControl("yourContentPane");

Label myLabel = (Label)ph.FindControl("myLabel");
myLabel.Text = "Success!";

The content from the child page is loaded into the first master page control, which is subsequently loaded into the grandparent master page.

link|flag
ding ding ding ding we have a winner!!! – peiklk Oct 16 at 15:20
vote up 1 vote down

have you tried this.Master.Master.FindControl("controlname"); ?

link|flag
Yes... just tried that to no avail :( – peiklk Oct 16 at 14:05
Oh, I thought the main master had the control. – somacore Oct 16 at 14:18

Your Answer

Get an OpenID
or

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