Asp.Net如何将多个RadioButton指定在一个组中
2019/7/7 18:28:32
本文主要是介绍Asp.Net如何将多个RadioButton指定在一个组中,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Asp.Net 中将多个RadioButton指定在一个组中
使用RadioButton的GroupName属性。
例如:
<asp:RadioButton ID="radOne_Tmp" runat="server" Text='<%#Eval("Template_Name") %>' GroupName="radOne_Tmp" ToolTip='<%#Eval("ID") %>' />
使用RadioButton的GroupName属性。
例如:
复制代码 代码如下:
<asp:RadioButton ID="radOne_Tmp" runat="server" Text='<%#Eval("Template_Name") %>' GroupName="radOne_Tmp" ToolTip='<%#Eval("ID") %>' />
这篇关于Asp.Net如何将多个RadioButton指定在一个组中的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!