This question already has an answer here:
How to tell RadioButtonList to NOT generate a table
(1个答案)
5年前关闭。
我想呈现一个简单的-控件列表。
我的ASP.NET后台代码如下所示:
但是RadioButtonList会自动呈现HTML表。如果我使用HtmlInputRadioButton,则一切正常,但在RenderControl()上崩溃
(1个答案)
5年前关闭。
我想呈现一个简单的-控件列表。
我的ASP.NET后台代码如下所示:
RadioButtonList list = new RadioButtonList();
list.ID = rbl.name;
list.CssClass = rbl.cssClass;
foreach (radio radio in rbl.radio)
{
ListItem li = new ListItem();
li.Text = radio.label;
li.Value = radio.value;
li.Selected = radio.@checked;
list.Items.Add(li);
}
但是RadioButtonList会自动呈现HTML表。如果我使用HtmlInputRadioButton,则一切正常,但在RenderControl()上崩溃
最佳答案
你应该看看RadioButtonList.RepeatLayout Property
关于c# - 如何防止ASP :RadioButtonList from rendering a HTML-Table?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2183827/
10-10 05:12