protected void grdDVT_RowDeleting(object sender, DevExpress.Web.Data.ASPxDataDeletingEventArgs e) { try { SYS_Session session = (SYS_Session)Session["SYS_Session"]; var HoatDong = (DataRowView)grdDVT.GetRow(grdDVT.FocusedRowIndex); db.DELETE_TTTT_QUANLYCAD_MATRAM(session.User.ma_dviqlyDN, HoatDong["MATRAM"] + ""); _DataBind(); ScriptManager.RegisterStartupScript(Page, Page.GetType(), "", "alert('Xoá loại dây thành công');", true); } catch (Exception ex) { } finally { e.Cancel = true; } }