我有一个看起来像这样的 aspx.vb 代码片段!(我正在从 xml 配置文件中读取内容以创建单选按钮列表)
Dim tr As TableRow = New TableRow
Dim tcValue As TableCell = New TableCell
Dim RadioButtonList = New RadioButtonList
//After this I load all the items in radiobuttonlist
tcValue.Controls.Add(tdRadioButtonList)
tr.Cells.Add(tcValue)
想象一下这个单选按钮列表有 6 个项目。我想创建 2 列,每列和单行中应包含 3 个单选按钮元素。我该如何实施呢?