Appearance
<style>
ul{
list-style-image: url('../8iAbk7rjT.png');
}
</style>
Development
<ul>
<asp:DataList ID="dd" runat="server">
<ItemTemplate>
<li><a href="/Pages/index.aspx?category=<%#Eval("id") %>">
<%#Eval("name") %></a></li>
<hr />
</ItemTemplate>
</asp:DataList>
</ul>
Is there a way to add an image as a UL
style in asp.net?
Any suggestions?