0

问题:如何将项目从数据库中插入到列表框中?

这是我尝试过的:

    public void Fetch()
    {
        using (SqlConnection cn = new SqlConnection(UtilObj.ConnectionString()))
        {
            cn.Open();
            ExecuteFetch(cn);
            cn.Close();
        }
    }

    public void ExecuteFetch(SqlConnection cn)
    {
        using (SqlCommand cm = cn.CreateCommand())
        {
            cm.CommandType = CommandType.StoredProcedure;
            cm.CommandText = "spName";
            cm.Parameters.AddWithValue("@Param1", Param1Val);
            using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
            {
                while (dr.Read())
                {
                    myListBox.Items.Add(dr["Color"].ToString());
                }
            }
        }
    }

当我运行代码时,即使它填充在调试器中,这也会显示一个空列表。

ASPX 页面

<asp:ListBox ID="myListBox" runat="server" />
4

1 回答 1

0

我想你正在寻找这样的东西: -

执行您的 sp 后获取 reader 对象

SqlDataReader reader = cmd.ExecuteReader(); 

myListBox.DataSource= reader; //reader object
myListBox.DataTextField = "Color"; // the field you want to show in listbox
myListBox.DataValueField = "Color"; // the value filed behind the items. 
myListBox.Databind();

如果您希望这样,文本和值字段也可以相同

而已。这与将项目绑定到下拉列表的方式相同。刚刚在我们最近的项目中使用了这个

希望它有帮助

于 2013-08-13T18:29:00.953 回答