我从代码隐藏中创建一个html列表,如下所示:

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);
}


但是呈现的列表中有项目符号,我想防止它们。

最佳答案

我认为您可以使用style属性:

list.Style.Add("list-style", "none");

10-05 22:00