博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.net中单选按钮RadioButton,RadioButtonList 以及纯Html中radio的用法实例?
阅读量:5896 次
发布时间:2019-06-19

本文共 1135 字,大约阅读时间需要 3 分钟。

http://www.cnblogs.com/summers/archive/2013/07/31/3227234.html

.net中单选按钮RadioButton,RadioButtonList 以及纯Html中radio的用法,区别?

RadioButton实例及说明:

<asp:RadioButton ID="publicHas" Checked="true" runat="server" CssClass="radioMiddle" Text="所有人可见" GroupName="mm"/>

<asp:RadioButton ID="privateHas" runat="server" CssClass="radioMiddle" Text="仅自己可见" GroupName="mm" />
<asp:RadioButton ID="friendHas" runat="server" CssClass="radioMiddle" Text="仅好友可见" GroupName="mm" />
.net后台处理方式:
if (privateHas.Checked == true)
model.Limits = 0;
if (friendHas.Checked == true)
model.Limits = 1;
if (publicHas.Checked == true)
model.Limits = 2;

RadioButtonList在.net中跟DropDownList用法相似,可以看成集合:
<asp:RadioButtonList ID="rbImg" Name="rbImg" runat="server" RepeatDirection="Horizontal"
RepeatLayout="Flow">
<asp:ListItem Value="1">是</asp:ListItem>
<asp:ListItem Value="0" Selected="True">否</asp:ListItem>
</asp:RadioButtonList>

.net后台处理方式:

this.radCid.SelectedValue = project.Cid;

radio
将name设置为相同的值
<input type="radio" name="sex" value="1" checked="checked"></input>男
<input type="radio" name="sex" value="0" ></input>女

.net后台处理方式:
通过Request.Form["sex"].ToString();获取

你可能感兴趣的文章
2019.01.02-dtoj2293-幻想乡开店(shop)
查看>>
bzoj5056:OI游戏
查看>>
Codeforces Round #539 div1
查看>>
最长回文子串
查看>>
ES6中的Promise对象的理解
查看>>
codeforces 960C Subsequence Counting
查看>>
分布式缓存中三种负载均衡的方法
查看>>
【11】ajax请求后台接口数据与返回值处理js写法
查看>>
[迭代思想]求下面分数序列的前13项之和
查看>>
【STM32】STM32 GPIO模式理解
查看>>
工厂方法模式
查看>>
Unity 性能优化(力荐)
查看>>
Python菜鸟之路:Jquery Ajax的使用
查看>>
C# 时间戳转换为时间方法
查看>>
大话GIS(转载)
查看>>
Android软件加安全码
查看>>
091、万能的数据收集器 Fluentd (2019-05-15 周三)
查看>>
20条Linux命令面试问答(转载)
查看>>
LeetCode算法题-Maximum Depth of Binary Tree
查看>>
POJ - 3436 ACM Computer Factory(最大流)
查看>>