我有一個網格視圖的數據顯示一個問題,當我按下按鈕「agregar」:數據顯示網格視圖
它顯示了一個小廣場,並顯示任何數據。
cn.Open();
MySqlCommand cm = cn.CreateCommand();
cm.CommandType = CommandType.Text;
cm.CommandText = "select * from detalle where iddetalle= '" + txt_boleta.Text + "'and idlocal='" + txtlocal.Text + "'";
cm.ExecuteNonQuery();
MySqlDataAdapter da = new MySqlDataAdapter(cm);
DataSet ds = new DataSet();
da.Fill(ds,"data");
GridView1.DataSource = ds.Tables["data"];
GridView1.DataBind();
因爲你在沒有執行好,如果執行的查詢將歡迎黑客通過注入 –