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
2010-06-07 19:36:25
If you have user controls (or partial views), can they access the parent form's string to build on it?
Dr. Zim
2010-06-07 20:10:24
For example, can you do a (Panel) Master.FindControl("name").somethingThatAddsContent("content")?
Dr. Zim
2010-06-07 20:14:11