i need to add JavaScript calls in some controls attributes, i am using master pages but in order to obtain the contentplaceholder client id i am iterating over the forms controls. is there another way to obtain in the server side code of the content page?

 foreach (Control control in this.Form.Controls)
                {
                    if (control is ContentPlaceHolder)
                    {
                        contentPlaceHolderID = control.ClientID;
                        break;
                    }
                }
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

If there's only few controls like this you can set up a global variable:

var contentPlaceholderId = '<%= this.ContentPlaceholder1.ClientId %>'
link|improve this answer
This works from the master page (without the "this" prefix) but fails if I try to add it inside the contentplaceholder1 itself. – Frug Nov 11 '11 at 18:38
feedback

I do the following in jQuery:

$("*[id$='DivFullWarning']").each(function() {
  // do whatever in here
});

this searches for any control that contains DivFullWarning in their ID, so you could name your ContentPlaceHolder "contentPlaceHolder" and then no matter how much asp.net muck's with your id, you'll still be able to grab it client side.

You could just expose the content placeHolder somewhere so you don't have to loop through all the controls.

link|improve this answer
1  
A quick thought, wouldnt that also match all automatically generated ids inside the ContentPlaceHolder? – Simon Svensson Apr 1 '09 at 5:33
hah, thats a good point =) – sontek Apr 1 '09 at 17:04
feedback

Your Answer

 
or
required, but never shown

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