Gridview数据源未更新

时间:2019-07-23 09:34:20

标签: c# asp.net database dataset sqlcommand

按下按钮,我试图从SQL Server与其他表一起使用数据库更新ASP.net网站上的GridView,但它没有变化,没有“捕获”。

未显示GridView。

    {
        SqlConnection sqlConnection1;
        sqlConnection1 = new SqlConnection(@"Data Source=ELAD_HA\SQLEXPRESS;Initial Catalog=Users;Integrated Security=True");
        SqlCommand sqlCommand1;
        sqlCommand1 = new SqlCommand("SELECT * FROM TBUsers ORDER BY Name", sqlConnection1);
        try
        {
            DataSet ds = new DataSet();
            SqlDataAdapter adptr = new SqlDataAdapter(sqlCommand1);
            SqlCommandBuilder comb = new SqlCommandBuilder(adptr);
            adptr.Fill(ds,"T1");

            GridView2.DataSource = ds.Tables["T1"];

            //GridView2.DataSource = ds;
            //GridView2.DataMember = "T1";
        }
        catch (SqlException ex)
        {
            SuccessLabel1.Text = ex.Message.ToString();
        }
    }

代码有什么问题?
P.S
我可以将DataSource更改为从菜单中选择数据源的GridView吗? (从“拆分”屏幕)。

感谢助手。

1 个答案:

答案 0 :(得分:1)

尝试调用databind来更新内容:

GridView2.DataBind();

最诚挚的问候