protected void schgrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//getting username from particular row
string schlName = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "schlName"));
//identifying the control in gridview
ImageButton lnkbtnresult = (ImageButton)e.Row.FindControl("imgbtnDelete");
//raising javascript confirmationbox whenver user clicks on link button
lnkbtnresult.Attributes.Add("onclick", "javascript:return ConfirmationBox('" + schlName + "')");
}
}
上記の行にエラーがあります:
オブジェクト参照がオブジェクト インスタンスに設定されていません
protected void schgrid_RowEditing(object sender, GridViewEditEventArgs e)
{
schgrid.EditIndex = e.NewEditIndex;
if (txtSearch.Text == "")
{
BindSchoolDetails();
}
else
{
BindSearchDetails();
}
}
を使用するたびに、 gridview レコードの削除に実際に使用されるrowEditing
例外がスローされます。schgrid_RowDataBound
この問題の解決を手伝ってください。問題を修正するコードを表示してください