protected void btnAgregar_Click(object sender, EventArgs e) { DBConn oConn = new DBConn(); if (oConn.Open()) { if (ListBox1.SelectedIndex >= 0) { cAppVistasCliente oAppVistasCliente = new cAppVistasCliente(ref oConn); for (int i = 0; i < ListBox1.Items.Count; i++) { if (ListBox1.Items[i].Selected) { oAppVistasCliente.CodCliente = CodCliente.Value; oAppVistasCliente.CodMonitor = ListBox1.Items[i].Value; oAppVistasCliente.Accion = "CREAR"; oAppVistasCliente.Put(); } } ListBox1.Items.Clear(); ListBox2.Items.Clear(); Load_ListBox(); } oConn.Close(); } }
protected void gridPages_RowDeleting(object sender, GridViewDeleteEventArgs e) { try { DBConn oConn = new DBConn(); if (oConn.Open()) { string pCodMonitor = gridPages.DataKeys[e.RowIndex].Value.ToString(); cAptMonitorMensaje oAptMonitorMensaje = new cAptMonitorMensaje(ref oConn); oAptMonitorMensaje.CodMonitor = pCodMonitor; oAptMonitorMensaje.Accion = "ELIMINAR"; oAptMonitorMensaje.Put(); if (!string.IsNullOrEmpty(oAptMonitorMensaje.Error)) { Response.Write(oAptMonitorMensaje.Error); Response.End(); } cAptClientesMonitorpages oAptClientesMonitorpages = new cAptClientesMonitorpages(ref oConn); oAptClientesMonitorpages.CodMonitor = pCodMonitor; oAptClientesMonitorpages.Accion = "ELIMINAR"; oAptClientesMonitorpages.Put(); if (!string.IsNullOrEmpty(oAptClientesMonitorpages.Error)) { Response.Write(oAptClientesMonitorpages.Error); Response.End(); } cAptMonitorPages oAptMonitorPages = new cAptMonitorPages(ref oConn); oAptMonitorPages.CodMonitor = pCodMonitor; oAptMonitorPages.Accion = "ELIMINAR"; oAptMonitorPages.Put(); if (!string.IsNullOrEmpty(oAptMonitorPages.Error)) { Response.Write(oAptMonitorPages.Error); Response.End(); } cAppVistasCliente oAppVistasCliente = new cAppVistasCliente(ref oConn); oAppVistasCliente.CodMonitor = pCodMonitor; oAppVistasCliente.Accion = "ELIMINAR"; oAppVistasCliente.Put(); if (!string.IsNullOrEmpty(oAppVistasCliente.Error)) { Response.Write(oAppVistasCliente.Error); Response.End(); } cAppMonitorView oAppMonitorView = new cAppMonitorView(ref oConn); oAppMonitorView.CodMonitor = pCodMonitor; oAppMonitorView.Accion = "ELIMINAR"; oAppMonitorView.Put(); if (!string.IsNullOrEmpty(oAptMonitorPages.Error)) { Response.Write(oAptMonitorPages.Error); Response.End(); } oConn.Close(); } } catch (Exception ex) { Response.Write(ex.Message + "; " + ex.InnerException.ToString()); } LoadGrid(); }