Your question, your audience. Choose who sees your identity—and your question—with question security.
<asp:DataList
ID="dlProducts" CssClass="dataView"
Runat="server">
<ItemTemplate>
<h4><%#Eval("ProductName")%></h4>
Description: <%#Eval("ProductDesc")%><br />
Price: <%#Eval("ProductPrice")%>
</ItemTemplate>
</asp:DataList>
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
then you can load this control to your datalist header template dynamically with following (for example in aspx page_load before databinding):
dlProducts.HeaderTemplate = LoadTemplate("YourUserCont
Hope this helps!