|
No Sorry, you can't use masterpages. Two things come to my mind: First, you coul ddo this using inheritance. Create a master usercontrol and then inherit all other controls from this class. The second solution would be to use a Theme. You create a .skin file in a theme (saved to "app_themes") and set the properties you want to be the same for all controls on a page. You then apply the theme to the page like so: <%@ Page Theme="BlueTheme" %>.
I personally would probably chose the inheritance from a base class.
Did this help you?
Cheers
Peter
|
|
Expert:
|
PeterNZ
|
|
Date:
|
Jul 19, 2007
|
|
Time:
|
15:35
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
Thanks, Peter. It's a pity that MS didn't think of making that as easy as the masterpage, since I think it's a pretty obvious thing to want to do.
I found this info on microsofts site: http://msdn2.microsoft.com/en-us/library...(vs.80).aspx about templated user controls, I think that's the inherited solution you're talking about. Theming I think is not good enough for me, since I want to be able to not only change colors and other css-styles, but also have some repeated html-code in the tempate.
Do you know about the MS way of doing it?
|
|
Expert:
|
dustPuppy
|
|
Date:
|
Jul 19, 2007
|
|
Time:
|
16:07
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
I've implemented this approach and it works pretty well.
Two things to be aware of though.
In order to access any controls within the template area from the page directly, the ITemplate property of the UC needs this declared [TemplateInstance(TemplateInstance.Single)]
And then the controls are not accessible before the OnPreRenderComplete event, so don't do anything with them in the Page_Load method.
Thanks for pointing me in the right direction, Peter.
|
|
Expert:
|
dustPuppy
|
|
Date:
|
Jul 20, 2007
|
|
Time:
|
11:48
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
| PeterNZ: |
65 |
| dustPuppy: |
60 |
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|