标题:请教关于RadioButtonList联动问题
取消只看楼主
猫色色
Rank: 2
等 级:论坛游民
帖 子:135
专家分:25
注 册:2006-6-8
结帖率:96%
已结贴  问题点数:20 回复次数:0 
请教关于RadioButtonList联动问题
我想实现一个当点击RadioButtonList里的一个数据的时候右边的TextBox1.Text,就自动会赋值!
我的代码是这么写的:
显示页
<asp:TextBox ID="TextBox1" runat="server" Height="22px" Width="621px">
<asp:Panel ID="Panel102" runat="server" ScrollBars="Auto"  Height="655px" Width="196px">
 请选择泵站
   <br />
 <br />
    <asp:RadioButtonList ID="RadioButtonList1" runat="server"
 DataTextField="e_name"
DataValueField="e_name" Width="186px" Height="25px" onselectedindexchanged="RadioButtonList1_SelectedIndexChanged" > //这是那句联动的语句
     </asp:RadioButtonList>
    </asp:Panel>

*.asp.cs页
 protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        TextBox1.Text = "234";   
    }
可是现在当单选完数据的时候,没有任何效果,请问各位老师这是为什么?
搜索更多相关主题的帖子: server 
2009-09-11 11:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-285418-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.495550 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved