我在按鈕中有下面的代碼。通過點擊該按鈕,我從sql server檢索數據並顯示在GridView中。我可以檢索並填寫dt.But我的數據不顯示在網格視圖中, 什麼是問題?請破解我。如何在windows應用程序C中將數據綁定到gridview#
private void gvIPretrieve_Click(object sender, EventArgs e)
{
connstring();
conn.Open();
using (SqlCommand cmd = new SqlCommand("gvretrieve_ip", conn))
{
cmd.CommandType = CommandType.StoredProcedure ;
using (SqlDataAdapter sda = new SqlDataAdapter(cmd))
{
using (DataTable dt = new DataTable())
{
sda.Fill(dt);
dataGridView2.DataSource = dt;
}
}
}
}
執行命令後'dt'中是否有任何數據? – 2014-12-02 05:45:34
嘗試添加dataGridView2.DataBind(); dataGridView2.DataSource = dt之後; – 2014-12-02 07:01:59