集思广益 广纳贤贴!!!
“/”应用程序中的服务器错误。
--------------------------------------------
GridView“newsID”激发了未处理的事件“RowDeleting”。
这个是运行删除时提示的错误,下面我的程序
protected void Delete(object sender,DataGridCommandEventArgs e)
{
OleDbConnection myconn = DB.CreateConnection();
myconn.Open();
string DnewID = newsID.DataKeys[e.Item.ItemIndex].ToString();
string sql = "delete from news where ID= " + DnewID;
OleDbCommand cmd = new OleDbCommand(sql, myconn);
cmd.ExecuteNonQuery();
myconn.Close();
}
------解决方案--------------------up