码迷,mamicode.com
首页 >  
搜索关键字:dropdownlist    ( 381个结果
设置Excel模板某列为DropDownList形式,用户不用输入,采取选择的方式避免输入的信息不符合要求
using (FileStream file = new FileStream(Path.Combine(HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath), filepath + file....
分类:其他好文   时间:2015-01-13 11:52:55    阅读次数:324
ASP.NET MVC 下拉框的传值的两种方式
以前使用WebForm变成时,下拉框传值只需直接在后台绑定代码就可以了。现在我们来看看在MVC中DropDownList...
分类:Web程序   时间:2015-01-09 15:33:57    阅读次数:209
MVC4中使用Html.DropDownList实现级联
本文记录了一个在MVC4中使用PartialView实现级联效果的小例子。准备工作首先准备一下要级联的数据,新建两个类:Province和City public class Province { public string Id { get; set; } p...
分类:Web程序   时间:2015-01-07 14:46:12    阅读次数:233
下拉框Html.DropDownList 和DropDownListFor 的经常用法
一、非强类型:Controller:ViewData["AreId"] = from a in rp.GetArea() select new SelectListItem { Text=a.AreaName, V...
分类:Web程序   时间:2015-01-07 12:21:50    阅读次数:115
DropdownList绑定的两种方法
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada =...
分类:其他好文   时间:2015-01-07 10:36:20    阅读次数:221
ASP.NET中使用DropDownList实现无刷新二级联动详细过程
Demo.sql 1 create table Car( 2 [id] int identity, 3 [brand] varchar(50) not null, 4 [type] varchar(50) not null 5 ) 6 go 7 8 insert into ...
分类:Web程序   时间:2015-01-04 19:09:25    阅读次数:194
为下拉式菜单(DropDownList)添加第一个选项
很多方法可以为为下拉式菜单(DropDownList)添加第一个选项,下面是Insus.NET小结了几个方法,仅供参考:Html code:数据源与绑定:protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){Data_Bind...
分类:其他好文   时间:2015-01-02 15:56:00    阅读次数:151
asp.net DropDownList的AppendDataBoundItems属性
个人笔记当设置DropDownList的AppendDataBoundItems属性为true,是将数据绑定项追加到静态声明的列表上,即在绑定之前可加入静态列表项。例如:前台这么写:1 2 3 后台:1 if(!IsPostBack)2 {3 DropDownList1.DataSo...
分类:移动开发   时间:2014-12-31 19:50:11    阅读次数:221
.net mvc DropDownList 下拉框_无限级分类
1、数据库设计: id:int  name:string pid:int  //父级id(顶级菜单默认为0) 2、Controller: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcTest.Model...
分类:Web程序   时间:2014-12-27 17:35:34    阅读次数:113
c# DropDownList 下拉框实现树形导航
ddlbig.Items.Add(newListItem("新闻分类","0"));newclass(pub.getpower(),"146","");publicvoidnewclass(DataTabledtMenu,stringparentNo,stringstr){stringexpression="parentid="+parentNo;DataRow[]foundRows;DataTablenewdt=newDataTable();foundRows=dtMenu.Select(expre..
分类:Windows程序   时间:2014-12-26 18:48:50    阅读次数:518
381条   上一页 1 ... 26 27 28 29 30 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!