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.