I create an html list from codebehind, like this:
HtmlGenericControl list = new HtmlGenericControl("ul");
for (int i = 0; i < 10; i++)
{
HtmlGenericControl listItem = new HtmlGenericControl("li");
Label textLabel = new Label();
textLabel.Text = "Menu"+i;
listItem.Controls.Add(textLabel);
list.Controls.Add(listItem);
}
But the rendered list has bullets, and I want to prevent them.
ulget a class or an id? How about theli? – Jeromy French Dec 21 '12 at 15:54