码迷,mamicode.com
首页 >  
搜索关键字:dropdownlist    ( 381个结果
Asp.net问题集锦
1.在Web应用开发中经常碰到这样的情况,Dropdownlist绑定的数据太多,用户要选择某一项必须从头找到尾,使用起来很不方便。最近我在工作中就碰到这种情况,公司内某个业务系统需要绑定几百条的厂家信息,用户强烈要求带搜索功能。其实要实现这个功能本身并不难,实现方式也可以有多种,就看哪种方式更优雅 ...
分类:Web程序   时间:2017-09-21 21:15:24    阅读次数:203
DropDownList联动
前台代码: <asp:DropDownList ID="DropDownList1" runat="server" Style="width: 200px; height: 30px" AutoPostBack="true" OnSelectedIndexChanged="DropDownList1 ...
分类:其他好文   时间:2017-09-11 18:13:36    阅读次数:202
C# DropDownList 绑定枚举类
第一种 ...
分类:Windows程序   时间:2017-09-09 14:30:31    阅读次数:221
javascript 获取DropDownList选定值的方法
<script type="text/javascript" language="javascript"> function submitData() { var d = document.getElementById("<%=DropDownList1.ClientID %>");//根据Drop ...
分类:编程语言   时间:2017-08-23 20:08:49    阅读次数:116
IE6/7下Select控件Display属性无效解决办法
HTML的Select控件,C#的DropDownList服务器控件 设置父类型Display属性之后,在IE6/7上无效 直接将下段javascript脚本添加到页面中即可 <script type="text/javascript"> window.onload = function () { ...
分类:其他好文   时间:2017-08-18 18:32:51    阅读次数:197
.NET MVC3中扩展一个HtmlHelper方法CheckBoxList
MVC中有DropDownList方法,挺好用,可是最常用的需求,一组checkboxlist咋没个类似方法呢?郁闷之余,自己做一个吧,直接上代码 public static MvcHtmlString CheckBoxList(this HtmlHelper helper, string name ...
分类:Web程序   时间:2017-08-17 12:49:07    阅读次数:230
JQ 代替change的方法
$("#rbldoctortitle").parent().find(".select-items ul li").bind("click", function () {} <asp:DropDownList ID="rbldoctortitle" runat="server" datatype=" ...
分类:其他好文   时间:2017-08-10 13:30:14    阅读次数:267
DropDownList 下拉选的OnSelectedIndexChanged属性和AutoPostBack属性 的配合使用,实现自动刷新
业务需求:客户端浏览器上有一个下拉选,有两个可选的值,当需要选择另一个值的时候,需要把这个值更新到后台的全局属性的变量中,页面就会变更。 下图是下拉选的两个值1、2 实现的过程:当选中下拉选后,属性OnSelectedIndexChanged的值dpl_rows_SelectedIndexChang ...
分类:其他好文   时间:2017-07-29 00:02:40    阅读次数:219
Asp.net--DropDownList控件绑定数据库数据
DropDownList控件绑定数据库数据:DB是公共类,reDt是公共类中的方法 放在Page_Load事件中 reDt方法: ...
分类:数据库   时间:2017-07-28 23:42:30    阅读次数:251
KendoUI Row绑定下拉菜单
Grid后台: DropDownList: ...
分类:其他好文   时间:2017-07-27 18:16:59    阅读次数:217
381条   上一页 1 ... 4 5 6 7 8 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!