using (FileStream file = new FileStream(Path.Combine(HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath), filepath + file....
分类:
其他好文 时间:
2015-01-13 11:52:55
阅读次数:
324
以前使用WebForm变成时,下拉框传值只需直接在后台绑定代码就可以了。现在我们来看看在MVC中DropDownList...
分类:
Web程序 时间:
2015-01-09 15:33:57
阅读次数:
209
本文记录了一个在MVC4中使用PartialView实现级联效果的小例子。准备工作首先准备一下要级联的数据,新建两个类:Province和City public class Province { public string Id { get; set; } p...
分类:
Web程序 时间:
2015-01-07 14:46:12
阅读次数:
233
一、非强类型:Controller:ViewData["AreId"] = from a in rp.GetArea() select new SelectListItem { Text=a.AreaName, V...
分类:
Web程序 时间:
2015-01-07 12:21:50
阅读次数:
115
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada =...
分类:
其他好文 时间:
2015-01-07 10:36:20
阅读次数:
221
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)添加第一个选项,下面是Insus.NET小结了几个方法,仅供参考:Html code:数据源与绑定:protectedvoidPage_Load(objectsender,EventArgse){if(!IsPostBack){Data_Bind...
分类:
其他好文 时间:
2015-01-02 15:56:00
阅读次数:
151
个人笔记当设置DropDownList的AppendDataBoundItems属性为true,是将数据绑定项追加到静态声明的列表上,即在绑定之前可加入静态列表项。例如:前台这么写:1 2 3 后台:1 if(!IsPostBack)2 {3 DropDownList1.DataSo...
分类:
移动开发 时间:
2014-12-31 19:50:11
阅读次数:
221
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
ddlbig.Items.Add(newListItem("新闻分类","0"));newclass(pub.getpower(),"146","");publicvoidnewclass(DataTabledtMenu,stringparentNo,stringstr){stringexpression="parentid="+parentNo;DataRow[]foundRows;DataTablenewdt=newDataTable();foundRows=dtMenu.Select(expre..