码迷,mamicode.com
首页 >  
搜索关键字:dropdownlist    ( 381个结果
asp:DropDownList数据绑定
开始以为asp:DropDownList数据绑定要是datatable类型的,当时写的时候没注意,就写成了List<T>绑定到了dropdownlist上,结果只有将DataValueField和DataTextField这两个属性设置到相应的列上,数据同样可以完成绑定。下面贴出绑定的流程:后台代码:protectedvoidPage_Lo..
分类:Web程序   时间:2014-08-29 18:32:49    阅读次数:158
jquery获取dropdownlist选中的值
var name = $("#DropDownList1 option:selected").val(); //获取dropdownlist 里面选中的值var name1 = $("#DropDownList1").text(); //获取dropdownlist 里面所用的值$("#ddl")....
分类:Web程序   时间:2014-08-27 14:37:17    阅读次数:261
(转).net控件dropdownlist动态绑定数据
DropDownList控件的使用(数据绑定)(.net学习笔记二)(2006-10-12 07:28:49)转载分类:.net学习笔记一、在页面初始化时候将集合绑定到DropDownListpublic void Page_Load(Object src.EventArgs e){ArrayLis...
分类:Web程序   时间:2014-08-27 12:51:07    阅读次数:244
DropdownList绑定的两种方法
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada =...
分类:其他好文   时间:2014-08-21 21:03:44    阅读次数:162
扩展方法IEnumerable<T>转换为IList<SelectListItem> ,提供@Html.DropDownList使用
由于在MVC中经常会使用到@Html.DropDownList方法,而该方法接收的是List 参数,因此就想着写一个扩展方法,直接把IEnumerable转换为List类型,这样使用起来会比较方便正式进入正文。1、首先创建下面实体: //水果类 public class Fruit { ...
分类:Web程序   时间:2014-08-21 14:38:54    阅读次数:252
DropdownList绑定的两种方法
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada =...
分类:其他好文   时间:2014-08-15 20:54:29    阅读次数:283
下拉框Html.DropDownList 和DropDownListFor 的经常用法
一、非强类型:Controller:ViewData["AreId"] = from a in rp.GetArea() select new SelectListItem { Text=a.AreaName, V...
分类:Web程序   时间:2014-08-15 12:13:58    阅读次数:286
yii框架下使用bootstrap时,判断checkbox、radioButtonList和dropDownList的js方法
1、首先设置button按钮的id:'htmlOptions'=>array('id'=>'buttonStateful') 例如: widget('bootstrap.widgets.TbButton', array('buttonType'=>'submit', 'type'=>'primary', 'label'=>'提交...
分类:Web程序   时间:2014-08-14 10:59:38    阅读次数:324
绑定下拉框
public void DropDownListBinding(DropDownList DDList, string sql, string strText, string strField, string str_qxz) { DataTable dt = MDGL.DBU...
分类:其他好文   时间:2014-08-13 17:33:16    阅读次数:187
ASP.NET——实现两个下拉框动态联动
这样的动态联动,一般由多个下拉框组成一组菜单,比如上面用到的两个下拉框。下拉菜单之间有联动的关系。当上级的选中项发生改变时,下级会根据上级中的选中项显示相应的内容。 用了动态联动之后,当面对庞大的数据或复杂的分类时,页面的加载速度也不会受到影响,也方便了用户查找。...
分类:Web程序   时间:2014-08-11 17:58:42    阅读次数:275
381条   上一页 1 ... 31 32 33 34 35 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!