本文介绍了gridview中的绑定不是未设置的工作对象引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我需要在下拉列表的GridView中绑定数据。



我尝试了什么:



Hi I need the bind the data inside GridView of a Dropdownlist.

What I have tried:

protected void GridViewSample_RowDataBound(object sender, GridViewRowEventArgs e)
        {

            cn.Open();
            SqlCommand cmd = new SqlCommand("Select * from Salary1", cn);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataTable dt = new DataTable();
            da.Fill(dt);
            DropDownList txtSalary = (DropDownList)GridViewSample.FindControl("txtSalary");
            txtSalary.DataSource = dt;
            txtSalary.DataTextField = "Salary";
            txtSalary.DataValueField = "Salary";
            txtSalary.DataBind();
            txtSalary.Items.Insert(0, new ListItem("--Select--", "0"));
            cn.Close();}

推荐答案


这篇关于gridview中的绑定不是未设置的工作对象引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 11:03