I want something like that:

<my:MyFancyPanel>
   <asp:Label Text="Hello">
</my:MyFancyPanel>

I tried but it seems my usercontrol doesn't accept any content.

link|improve this question

im just curious, what is the reason for wanting this? if all your doing is nesting other controls/html in it, is a regular asp:panel not sufficient? You could always create a Custom Control (instead of a Server Control) inheriting from the Panel class. But of course then you dont have markup, you'll have to add controls from code-behind. – RPM1984 Sep 30 '10 at 10:35
I want to create a panel with scrolling and border and so on. But this panel should be used in serveral places so it alway gets different content in different places. – codymanix Sep 30 '10 at 11:06
feedback

1 Answer

up vote 2 down vote accepted

you need to make it a Templated Usercontrol

link|improve this answer
Looks great. Is there a way to get User Controls into the Toolbox? – codymanix Sep 30 '10 at 13:54
Never done that, but you can try the ToolboxItemAttribute: msdn.microsoft.com/en-us/library/… ;) – Caspar Kleijne Sep 30 '10 at 14:42
feedback

Your Answer

 
or
required, but never shown

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