RSolberg, User Control :
<my:UserControl id="MyControl1" runat="server" />
<my:UserControl id="MyControl2" runat="server" />
<my:UserControl id="MyControl3" runat="server" />
, User Control , , .
, , - ASP.NET Repeater, ListView DataGrid. - /, . Repeater HTML/CSS , , .
<asp:Repeater id="MyRepeater" runat="server">
<HeaderTemplate>
<h1>Products</h1>
</HeaderTemplate>
<ItemTemplate>
<p>
Product name: <%# Eval("ProductName") %>
</p>
</ItemTemplate>
</asp:Repeater>
:
MyRepeater.DataSource = products;
MyRepeater.DataBind();
ASP.NET , , - , .