DropDownList的使用,RadioButtonList的使用
Posted tags: 篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DropDownList的使用,RadioButtonList的使用相关的知识,希望对你有一定的参考价值。 DropDownList的使用之从后台动态获取值 前端aspx代码如下 <asp:DropDownList ID="DDLTypeID" runat="server" > 后台cs代码 后台获取选中的值 string Type = Convert.ToInt32(DDLTypeID.SelectedValue);//说明DDLTypeID是DropDownList的id jquery方式获取DropDownList选中的值 var ddl = document.getElementById("DropDownList的id"); var index = ddl.selectedIndex; var Value = ddl.options[index].value; RadioButtonList的使用 前端代码如下 <asp:RadioButtonList ID="radio" runat="server" RepeatDirection="Horizontal"> 后台获取值 int Sex = Convert.ToInt32(radio.SelectedValue); RadioButtonList里面的选项默认就是互斥的,只能选一个。 以上是关于DropDownList的使用,RadioButtonList的使用的主要内容,如果未能解决你的问题,请参考以下文章 DropDownList的使用,RadioButtonList的使用 gridview中用dropdownlist更改值来筛选,更改dropdownlist之后无法进行checkbox选择 如何使用 jQuery 设置 DropDownList 的值?
</asp:DropDownList> private void DDLTypeIDBind()
{
DDLTypeID.DataSource = DBSqlHelper.getDataTable("select * from 表名 ");
DDLTypeID.DataTextField = "要绑定的名字";
DDLTypeID.DataValueField = "要绑定的id";
DDLTypeID.DataBind();
DDLTypeID.Items.Insert(0, new ListItem("请选择职位", "0"));
}
<asp:ListItem Value="0" Selected="true">女</asp:ListItem>
<asp:ListItem Value="1">男</asp:ListItem>
</asp:RadioButtonList>