Asp.net RadioButtonList的选值问题

我想实现下列效果.不知道大家是不是明白<asp:RadioButtonListrunat="server"ID="myRadio"><asp:ListItem>a</as... 我想实现下列效果.不知道大家是不是明白
<asp:RadioButtonList runat="server" ID="myRadio">
<asp:ListItem>a</asp:ListItem>
<asp:ListItem>b</asp:ListItem>
<asp:ListItem>c</asp:ListItem>
</asp:RadioButtonList>
页面上有个textbox.还有个button.当我在textbox里输入1,点button后.
让Radiobutton也选中 ListItem b.
高分送上..拜谢了!!!!
展开
 我来答
kid83
2009-05-22 · TA获得超过2081个赞
知道大有可为答主
回答量:1818
采纳率:0%
帮助的人:1991万
展开全部
protected void Button1_Click ( object sender , EventArgs e )
{
if ( this.TextBox1.Text == "1" )
{
this.myRadio.SelectedIndex = 1;
}
else
{
this.myRadio.SelectedIndex = -1;
}
}
heisetoufa
2009-05-22 · TA获得超过522个赞
知道小有建树答主
回答量:700
采纳率:0%
帮助的人:424万
展开全部
明白你的需求

if(myRadio.items.Selected == textbox.Text)
{
myRadio.items[1].checked = true;
}

大约是这个意思,没上机试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
gyhmichael
2009-05-22 · TA获得超过257个赞
知道小有建树答主
回答量:162
采纳率:0%
帮助的人:116万
展开全部
int index = Convert.ToInt16(TextBox1.Text); //得到输入的值
if (index >= myRadio.Items.Count) //判断是否超出原始项目的数目
{
ClientScript.RegisterStartupScript(GetType(), "", "alert('输入值超出范围!')", true);
return;
}
myRadio.SelectedIndex = -1; //把原来选中的项目取消
myRadio.Items[index].Selected = true; //让输入项选中
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友400fcf9a0
2009-05-22
知道答主
回答量:18
采纳率:0%
帮助的人:9.7万
展开全部
<script type="text/javascript" language="javascript">

function SetRadioIndex() {
var sIndex = document.getElementById("<%=txt.ClientID %>").value;
if (sIndex == "") {
return false;
}
if (!isNaN(sIndex)) {

var myRadio = document.getElementById("<%=myRadio.ClientID %>");
var iItemsCount = myRadio.getElementsByTagName("input").length;
if (sIndex >= iItemsCount) {
alert("索引超出范围");
return;
}
else
document.getElementById("<%=myRadio.ClientID %>" + "_" + sIndex).checked = true
return true;
}
else {
alert("请输入数字");
return false;
}
}
</script>

<asp:RadioButtonList runat="server" ID="myRadio">
<asp:ListItem>a</asp:ListItem>
<asp:ListItem>b</asp:ListItem>
<asp:ListItem>c</asp:ListItem>
</asp:RadioButtonList>
<asp:TextBox runat="server" ID="txt"></asp:TextBox>
<asp:Button runat="server" ID="btn" Text="ok" OnClientClick="return SetRadioIndex()" />
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式