DropDownList的使用,RadioButtonList的使用

DropDownList的使用之从后台动态获取值

前端aspx代码如下

<asp:DropDownList ID="DDLTypeID" runat="server" >
</asp:DropDownList>

后台cs代码

   private void DDLTypeIDBind()
    {
        DDLTypeID.DataSource = DBSqlHelper.getDataTable("select * from 表名 ");
        DDLTypeID.DataTextField = "要绑定的名字";
        DDLTypeID.DataValueField = "要绑定的id";
        DDLTypeID.DataBind();
        DDLTypeID.Items.Insert(0, new ListItem("请选择职位", "0"));
    }

后台获取选中的值

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">
<asp:ListItem Value="0" Selected="true">女</asp:ListItem>
<asp:ListItem Value="1">男</asp:ListItem>
</asp:RadioButtonList>

后台获取值

int Sex = Convert.ToInt32(radio.SelectedValue);

RadioButtonList里面的选项默认就是互斥的,只能选一个。

时间: 2024-10-20 07:04:21

DropDownList的使用,RadioButtonList的使用的相关文章

ASP.NET开发,且编且改,分清职责

本篇Insus.NET使用一个实例,分享在ASP.NET开发时,一个功能一个方法(函数),且编且改,一步一个脚印把实例完成.在方法多变多形式的情况之下,怎样把写出来程序简单明了. 下面是一个Excel文档:http://download.cnblogs.com/insus/ASPDOTNET/Book1.rar 现在是要读取它,并显示于GridView控件上,方法参考<Excel上传并读取数据>http://www.cnblogs.com/insus/p/3814857.html 由于一些字段

.Net学习线路图

1.C#编程基础加强/Windows编程基础(6天) 核心技术课程 编程基础强化练习.面向过程编程(变量.if.for.while.函数.类型转换.枚举.数组.重载.值类型.引用类型.ref.out.字符串).面向对象编程(类.继承.接口.异常.索引器.多态).Attribute.常用数据结构(List.Dictionary.Array).常用.net类库.泛型.IO流等. 常用WinForm控件(TextBox.CheckBox.Button.RadioButton.ListBox.Combo

从零开始编写自己的C#框架(22)——添加普通列表页面

普通列表页面指的是上一章那种有层次感列表以外的正常列表页面,由于上一章已讲解了正常添加页面的相关操作了,所以部分相关的操作本章节就不再罗嗦重复一次了.大家可以试试先用本章内容中的一些简单介绍,自己使用上一章下载的解决方案来实现一下,做做练习. 首先还是打开数据字典,创建广告内容表 在这里要说明一下的是,大家在对数据字典进行操作后(增.改.删),一定要在数据字典中的"版本"工作表中添加更新历史,以方便后面的维护人员查看(一定要养成一种良好的开发习惯),如下图 然后还是使用ExcelToS

Jquery 操作RadioButtonList,DropDownList

Jquery版本2.1.4 RadioButtonList 1.获取值: $("input[name='rbtn']:checked").val(); 2.设置值 $("input[name='rbtn']:checked").val(val); 其中val为值 DropDownList 1.获取值: $("#ddl").val(); 2.设置值: $("#ddl").find("option[value='val'

ListBox,CheckBoxList,DropDownList,RadioButtonList的常见数据绑定

ListBox,CheckBoxList,DropDownList,RadioButtonList的常见用法 四个都是选择控件,用法大同小异,基本都是指定键值对: 直接加选择项: void way1() { DropDownList1.Items.Add("c#"); DropDownList1.Items.Add("vb"); DropDownList1.Items.Add("c"); DropDownList1.Items.Add("

yii框架下使用bootstrap时,判断checkbox、radioButtonList和dropDownList的js方法

1.首先设置button按钮的id: <span style="font-size:14px;">'htmlOptions'=>array('id'=>'buttonStateful')</span> 例如: <span style="font-size:14px;"> <?php $this->widget('bootstrap.widgets.TbButton', array('buttonType'=

jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值

-.获取dropdownlist的text(ddlList为服务器端dropdownlist的ID,生成name属性等于ddlList的select标签) $("#ddlList option:selected").text() 二.获取dropdownlist的value(ddlList为服务器端dropdownlist的ID,生成name属性等于ddlList的select标签) $("#ddlList").val() 三.获取radiobuttonlist的t

NET:Checkboxlist,Dropdownlist 添加ToolTip说明

ToolTip属性: ToolTip 类 (System.Windows.Controls)? 表示创建弹出项的控件,该弹出项可显示界面中元素的相关信息.命名空间: System.Windows.Controls 程序集: PresentationFramework ToolTip 类 (System.Windows.Forms)? 表示一个长方形的小弹出窗口,该窗口在用户将指针悬停在一个控件上时显示有关该控件用途的简短说明. 以上摘自 MSDN官网. 一般的Label   其ID可以直接绑定

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

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="radioM