asp.net 绑定DropDownList

  protected void BindBankAccount()
    {
        DropDownList_bank.Items.Clear();
        ListItem initItem = new ListItem("--请选择--", "-1");
        DataTable dt = Lms.DAL.BankAccount.GetList(" and status=1");
        DropDownList_bank.Items.Add(initItem);

        if (dt != null && dt.Rows.Count > 0)
        {
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                ListItem item = new ListItem();
                item.Value = dt.Rows[i]["id"].ToString();
                item.Text = dt.Rows[i]["bank"].ToString() + ":" + dt.Rows[i]["accountno"].ToString();
                DropDownList_bank.Items.Add(item);
            }
        }
    }
时间: 2024-11-08 02:15:18

asp.net 绑定DropDownList的相关文章

理解asp.net中DropDownList编辑数据源,绑定数据库数据。

一.理解asp.net绑定数据库 终于学习到了连接数据库部分的内容,杨中科老师视频看起来挺轻松的,如果是高清版就更ok了. 我发现我学习新的编程语言会有一个特点,都想要赶紧学习数据库,数据就是一切,有了数据才能操作一切的原因吧.现在能连上数据库特别心安.把过程记录一下,成为学习轨迹的一部分. 环境是VS2013.MSSQLSERVER(2012) (一)我想实现的效果是:一个下拉菜单DropDownList,从数据库那边获取数据过来,显示在下单菜单里. (二)实现的过程 首先,我把数据库跟数据表

GridView 中绑定DropDownList ,下拉框默认选中Label的值

在GridView中,我们 有时候要绑定值. 前台绑定的代码可以这样 <asp:TemplateField HeaderText="当前状态" ItemStyle-HorizontalAlign="Center"> <EditItemTemplate> <asp:DropDownList ID="dStatus" DataSource='<%#BindStatus()%>' DataTextField=&

ASP.NET绑定CHECKBOXLIST--------JQUERY绑定CLICK事件,获取CHECKBOX的VALUE和显示值

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server&qu

ASP.Net ListBox DropdownList 不同条目设置背景色和字体颜色( 转&#183; 载 )

ASP.Net ListBox DropdownList 不同条目设置背景色和字体颜色 2009-09-30  来自:真有意思 [ZU14.CN]  字体大小:[大 中 小] 摘要:在HTML展现页面上,对于html 的 select, 服务器端控件 dropdownlist, 有时需要根据不同的情况,对某些 option 项,设置不同的颜色和不同的背景色,来以示区别, 对于 HTML 控件 SELECT, 是轻而易举的,只要指定 style 即可,对于服务器端控件,因为不能直接指定style或

Asp.net绑定带层次下拉框(select控件)

1.效果图 2.数据库中表数据结构 3.前台页面 <select id="pid" runat="server"> <option value="0" data="|0|">不选父级类</option> </select> 备注:查看源代码 4.后台代码 using System; using System.Data; using System.Web.UI.WebControl

ASP.NET Repeater 绑定 DropDownList Calendar 选择日期

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;using System.Text; using System.IO; using System.Data; public partial class DownloadItem_CmdExeItem : System.Web

ASP.NET - List&lt;&gt; 绑定 DropDownList

代码: 1 //声明泛型 2 List<category> inof = new List<category>();//二级分类 3 4 //声明类使用的对象类 5 public class category 6 { 7 public category(string id, string name) 8 { 9 Id = id; 10 Name = name; 11 } 12 13 private string id; 14 15 public string Id 16 { 17

Asp.Net 之 DropDownList的使用

这里不细说,直接上案例 <td style="width: 30px;" align="right"> 年月: </td> <td> <asp:DropDownList ID="ddl_ksyear" runat="server" class="easyui-combobox" Width="60"> </asp:DropDownLi

绑定dropdownlist

System.Data.SqlClient.SqlConnection sqlconn = new System.Data.SqlClient.SqlConnection(); sqlconn.C; sqlconn.Open(); System.Data.SqlClient.SqlDataAdapter sqldar = new System.Data.SqlClient.SqlDataAdapter("select UserName from forums_Users",sqlcon