I'm looking for a way to access my page's controls.

I found this function that allows me to enter the ID of my control and the "root control" and than it searches the children of the "root control" untill it finds my control id.

But the problem is that my control is nested in a table and the table is nested in a page in my master page.

whats the root control for the master page?

link|improve this question

Sorry question is not that clear. Master page cannot contain a page. A page refers to a master page. If you are trying to find a control in the master page from a page, simply pass this.Master as your root control id. – user6130 Dec 25 '10 at 13:18
feedback

2 Answers

up vote 2 down vote accepted

You can use the Master property of your content page to get the master page, then FindControl to drill down till you get the control you are looking for (or you can use the function you already have).

See this howto on MSDN.

link|improve this answer
Thanks!! Works Great – Or Betzalel Dec 25 '10 at 13:56
@Or - Glad I could help. – Oded Dec 25 '10 at 13:56
feedback

Try

(this.Page.MasterPage as MyMasterPage).SomeMasterPageMethodOrProperty

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.