日期:2014-05-18  浏览次数:21139 次

vs2005 里面没有RadioGroup吗?
找了半天也没找到

------解决方案--------------------
Radio Group?
应该不是标准的Windows控件。

楼主你想实现什么功能呢?
------解决方案--------------------
有用radiobuttonlist即可实现
------解决方案--------------------
是控件,直接使用,在属性items中加项目既可
------解决方案--------------------
有Group属性,设置一下
------解决方案--------------------
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:RadioButton ID="r1" GroupName ="r" runat="server" Checked ="true" /> 
<asp:RadioButton ID="RadioButton1" GroupName ="r" runat="server" /> 
<asp:RadioButton ID="RadioButton2" GroupName ="r" runat="server" /> 
<asp:RadioButton ID="RadioButton3" GroupName ="r" runat="server" /> 
</div>
</form>
</body>
</html>
以上代码应该能实现楼主想要的吧.
------解决方案--------------------
自己做一个, 比较简单...