I want to create a custom web control that works a bit like the Repeater Control, so I can define template details...
<myPrefix:myRepeater etc...>
<title>
Specific Group of Links
</title>
<ItemTemplate>
<a href="<%# DataBinder.Eval(Container.DataItem, "url_field")%>"> <%# DataBinder.Eval(Container.DataItem, "link_name_field" %></a><%# DataBinder.Eval(Container.DataItem, "iwg_displayed_name") %>
</ItemTemplate>
</myPrefix:myRepeater>
but so far all the custom control examples I've found are for single tag custom controls like...
<myPrefix:myControl etc... />
I'm going to play around with inheriting from Repeater to see if that gets me anywhere, but thought I'd post here in case someone knows about this...