摘要: 1.使用DropDownList手动绑定数据源 public void GetBinds() { DataTable tb= GetTable(……); this.DropDownList.DataSource=tb; this.DropDownList.DataTextField="类别"; //可见值 this.DropDownList.DataValueField="ID" //隐藏值 } 调用该 方法后记的 加上 this.DataBind();2. 篇历的 ChickBoxList for (int i=... 阅读全文
posted @ 2012-04-16 13:25 酒沉吟 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1. 绑定标签 <%# …… %> 可绑定标签属性值,表达式,方法的结果及数据源等。 a. 绑定属性之label的Text属性值 : <asp: label1 ID="labtxt" Text="<%# DataTime.Now.ToShortString() %>" > this.label1.DataBind();***************后台代码千万不能少 b.绑定变量 后台代码类中定义一变量 protected Color bgcolor=Color.FromArgb(180,140,210); 前台 &l 阅读全文
posted @ 2012-04-16 09:50 酒沉吟 阅读(183) 评论(0) 推荐(0) 编辑