是用ListBox控件
ListBoxItem item = new ListBoxItem()item.Content = "ListBoxItem"
this.lb.Items.Add(item)
添加HTML Radio按钮实现选中一行若使用了<AlternatingItemTemplate>则在其中添加如下代码:
<td><input name="SelectRadio" type="radio" value='<%# Eval("ID")%>' onclick="SelectRow(this.value)"/>Select</td>
在<LayoutTemplate>中添加:<th >SelectRow</th>
在<ItemTemplate>中添加:
<td><input name="SelectRadio" type="radio" value='<%# Eval("ID")%>' onclick="SelectRow(this.value)"/>Select</td>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)