c#和asp.net的问题 要求是要删除gridview里的一行信息,按钮都作好了。如果帮我答出来了再加60分 20
然后我触发了delete事件。但是结果一点delete不好使啊,下面是代码protectedvoidGridView1_RowDeleting(objectsender,...
然后我触发了delete事件。但是结果一点delete不好使啊,下面是代码
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
SqlConnection MyConnection = new SqlConnection(connectionString);
try
{
MyConnection.Open();
int id = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
//string sql = "delete from GnmAccessLogs where ID=" + id;
SqlCommand command = new SqlCommand("delete from GnmAccessLogs where ID=" + id, MyConnection);
command.ExecuteNonQuery();
GridView1.DataBind();
}
catch
{
Response.Write("delete error");
}
finally
{
MyConnection.Close();
}
}
弄了好几个小时都不对,求大神们指导。
谢谢 展开
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
SqlConnection MyConnection = new SqlConnection(connectionString);
try
{
MyConnection.Open();
int id = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value.ToString());
//string sql = "delete from GnmAccessLogs where ID=" + id;
SqlCommand command = new SqlCommand("delete from GnmAccessLogs where ID=" + id, MyConnection);
command.ExecuteNonQuery();
GridView1.DataBind();
}
catch
{
Response.Write("delete error");
}
finally
{
MyConnection.Close();
}
}
弄了好几个小时都不对,求大神们指导。
谢谢 展开
展开全部
GridView1.DataBind();这个前面应该有gridview.datasours="数据源";你的缺少绑定数据源。加上后应该好使。建议把绑定数据单独写一个方法,这样比较方便调用。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
. 先判断一下你的 变量 ID 是否有数据? 数据是否正确?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询