0
代碼是不工作當我點擊編輯它沒有顯示任何文本框當我在GridView中單擊編輯
protected void gdvDeptDetails_RowEditing(object sender, GridViewEditEventArgs e)
{
gdvDeptDetails.EditIndex = e.NewEditIndex;
BindData();
}
公共無效BindData()
{
con.Open();
da = new SqlDataAdapter("select * from deptinfo",con);
ds = new DataSet();
da.Fill(ds);
gdvDeptDetails.DataSource = ds;
gdvDeptDetails.DataBind();
}
不知道...也許是因爲你使用RowEdit? – leAthlon
請提供BindData()函數的更多信息 –
使用'RowCommand'而不是'RowEditing'。 –