vote up 0 vote down star

Let's say I have a custom template control, that can be used in pages like so:

<AR:CustomControl runat="server">
    <ViewTemplate>
        <span>stuff</span>
    </ViewTemplate>
</AR:ModalLink>

Since there is only one template field, the element isn't really necessary. Is there a way I can edit my control so it can be used like?

<AR:CustomControl runat="server">
    <span>stuff</span>
</AR:ModalLink>

Note that this is a UserControl with an ASCX file. So I don't think I can simple inherit from an existing control like Label.

flag

50% accept rate

1 Answer

vote up 0 vote down

Found the solution here: "http://alvinzc.blogspot.com/2006/10/aspnet-basic-of-custom-server-control_25.html"

In a nutshell:

[ParseChildren(true, "Content")]
[PersistChildren(false)]
public partial class CustomControl : System.Web.UI.UserControl
{
    ...

    [Browsable(false),
    PersistenceMode(PersistenceMode.InnerDefaultProperty),
    TemplateContainer(typeof(Contents)),
    TemplateInstance(TemplateInstance.Single)]
    public ITemplate Content { ... }
}
link|flag
Link should be alvinzc.blogspot.com/2006/10/… – Sean McMillan Oct 23 at 12:44

Your Answer

Get an OpenID
or

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