• dropdownlist绑定数据


    (1)   

             string SQL_Select = "select id, ItemName from DDLItem order by id desc";

             //构造一个SqlDataAdapter

             SqlDataAdapter myAdapter = new SqlDataAdapter( SQL_Select, Conn);

             //开始读取数据

             Conn.Open();

             DataSet dataSet = new DataSet();

             myAdapter.Fill( dataSet,"Table1" );

             Conn.Close();

             //开始绑定DropDownList

             //指定DropDownList使用的数据源

             DropDownList1.DataSource = dataSet.Tables["Table1"].DefaultView;

             //指定DropDownList使用的表里的那些字段

             DropDownList1.DataTextField = "ItemName"; //dropdownlist的Text的字段

             DropDownList1.DataValueField = "id";//dropdownlist的Value的字段

             DropDownList1.DataBind();


    (2)
            SqlDataReader dr = cmd.ExecuteReader();
            while (dr.Read())
            {     
                DropDownList1.Items.Add(new ListItem(dr["status"].ToString(), dr["status_Id"].ToString()));
            }

    插入数据库:

    DropDownList1.SelectedItem.Value.ToString()

    从数据库读取数据并且设置默认值:

       DropDownList1.Items.FindByText("值").Selected = true;

    或者通过value

     DropDownList1.Items.FindByValue(value值).Selected = true; 

  • 相关阅读:
    Leetcode 109
    Leetcode 118
    js时间操作
    DWR搭建以及使用教程
    Ant 概念
    Eclipse 快捷键
    [eclipse] 三个操作技巧
    js call方法
    js验证密码强弱
    request getParameter getAttribute
  • 原文地址:https://www.cnblogs.com/crazy00/p/1643927.html
Copyright © 2020-2023  润新知