vote up 3 vote down star

Is it possible to set the data in a ContentPlaceHolder through code? This is what I am thinking of:

dim oCPH as new ContentPlaceHolder
oCPH.id = "column1" 'this id is the one that corresponds with the ID I set on the page
oCPH.content = "content here" '<-- not real code

Obviously that is not correct syntax, I hope that this clarifies what I am asking

flag

78% accept rate

1 Answer

vote up 3 vote down check

You should be able to reference it through the MasterPage element on the current page. Something like:

ContentPlaceHolder cph = (ContentPlaceHolder)Master.FindControl("column1");

If in the MasterPage codebehind, just reference it by name.

link|flag

Your Answer

Get an OpenID
or

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