Reputation: 3734
if i create a html ul. and wanted to dynamically add list items to this list.
so i have :
<ul id="test" runat="server">
</ul>
is there a way i can add list item to this list dynamically in asp.net i am using vb
Upvotes: 1
Views: 816
Reputation: 1063
You can use a Repeater or a ListView to easily create a list of <li>
.
Upvotes: 1