vote up 1 vote down star

I have to find the IDs of all the contentPlaceHolders in a MasterPage.

flag

3 Answers

vote up 0 vote down check

Iterate through all Controls and recursively through their subcontrols and check the type and if they are contentplaceholders you have the ID.

link|flag
An example would be gr8..As I am using a nested Master Page . I have written a function which takes MasterPage as Parameter and loops throus all the controls. but for some unknown reason its not able to find the ContentPlaceHolder – SandHurst Feb 5 at 9:54
Perhaps you should edit your question to include the code you have already written. – Cerebrus Feb 5 at 10:41
vote up 1 vote down

Just query the ContentPlaceHolders property which returns an IList containing all the CPH names in the given Master page.

VB code: (Sorry!)

'In the Master Page.
For Each cphID As String In Me.ContentPlaceHolders
  Debug.WriteLine(cphID)
Next
link|flag
The thing is I have to pass MasterPage as parameter to the function. I cant write a function in Master Page – SandHurst Feb 5 at 10:25
vote up 1 vote down

try:

for (string cphID in ((MasterPageType)this.MasterPage).ContentPlaceHolders)
{
   Debug.WriteLine(cphID);
}

In the code behind of your page, and replace MasterPageType with the type of your master page

link|flag

Your Answer

Get an OpenID
or

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