RadioButton 和 RadioButtonList 比较
2018-06-18 05:17:53来源:未知 阅读 ()
第一次接触RadioBttonList时候,觉得这个控件完全可以取代RadioButton,操作更加简便。直到今天,完成了一个小小的功能,才发现,尺有所短不是瞎掰的。
需求如下:
Add Proration Rate radio buttons.
- Radio button for a fixed rate
- Selected by default
- Meaning using HR user for calculation
- Radio button for Based on old logic
亲爱的Radio之间隔了其他控件,于是,List毫无用武之地。只能定义Group将Radio绑在一组内。
前台
1 <table> 2 <tr> 3 <td class="font12 bold dkgray right" width="150"> 4 <asp:Label runat="server" ID="Label20">Proation Rate:</asp:Label> 5 </td> 6 <td class="font12 bold dkgray" width="800"> 7 <asp:RadioButton ID="rbFixed" runat="server" Checked="True" 8 GroupName="Proation" AutoPostBack="True" 9 oncheckedchanged="rbFixed_CheckedChanged" /> 10 <asp:TextBox ID="txtFixedRate" runat="server" MaxLength="7"></asp:TextBox> 11 <asp:Label runat="server" ID="Label21">(A fixed rate, int the format decimal number)</asp:Label> 12 <asp:Label runat="server" ID="lblProationRate" ForeColor="red" ></asp:Label> 13 <br /> 14 <asp:RadioButton ID="rbOld" runat="server" GroupName="Proation" 15 oncheckedchanged="rbOld_CheckedChanged" AutoPostBack="True" /> 16 <asp:Label runat="server" ID="Label22">Based on old logic ((Effective Date - Last increase Date - LOA days )/364)</asp:Label> 17 </td> 18 </tr> 19 </table>
后台的话 监听事件就会麻烦一点点。不知道对不对呢,明天才能见分晓。
后台
protected void rbOld_CheckedChanged(object sender, EventArgs e) { if (rbOld.Checked) { txtFixedRate.Text = string.Empty; txtFixedRate.Enabled = false; lblProationRate.Text = string.Empty; } } protected void rbFixed_CheckedChanged(object sender, EventArgs e) { if (rbFixed.Checked) txtFixedRate.Enabled = true; }
另 清楚RadiobuttonList所有选中项的方法: RadioButtonList1.ClearSelection();
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Lambda表达式用法大比较: Scala和Java 8 2020-05-26
- 编程语言学哪个比较好? 2020-05-07
- StringBuilder、StringBuffer分析比较 2020-04-30
- java和python的比较 2020-04-29
- Java中包装类与基本类型运算的性能比较(Integer i += 1) 2020-04-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash