WingMan20-10
WingMan20-10

Reputation: 3734

Dynamically Adding items to an un-order list in asp.net

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

Answers (1)

mark123
mark123

Reputation: 1063

You can use a Repeater or a ListView to easily create a list of <li>.

Upvotes: 1

Related Questions