views:

50

answers:

1

Is it possible to feed a single Master Page Content Placeholder from multiple areas in the child page? Something like a string builder?

+1  A: 

You can always use a string builder and then output that string in a single content placeholder.

You cant reference the content placeholder twice so concatenating a string is pretty much your only option.

jfar
If you have user controls (or partial views), can they access the parent form's string to build on it?
Dr. Zim
For example, can you do a (Panel) Master.FindControl("name").somethingThatAddsContent("content")?
Dr. Zim