I have a UL list in a ASPX page:
nested it with parent child,use your elements as below
Dim newLi = New HtmlGenericControl("li")
Dim anchor = New HtmlGenericControl("a")
anchor.Attributes.Add("href", itemrow.Item("reg_url").ToString().Trim())
anchor.InnerText = itemrow.Item("conf_name")
newLi.Controls.Add(anchor)
eventList.Controls.Add(newLi)