protected void btnEnviar_Click(object sender, EventArgs e) { PrecargueProduccion objPrecargueProduccion = new PrecargueProduccion(); foreach (GridViewRow row in grvActaTransferencial.Rows) { CheckBox check = row.FindControl("chkSeleccionar") as CheckBox; if (check.Checked) { objPrecargueProduccion.ActualizarMomento(int.Parse(row.Cells[1].Text), 5); } } CargarDigitacion(); }
protected void btnEnviar_Click(object sender, EventArgs e) { PrecargueProduccion objPrecargueProduccion = new PrecargueProduccion(); foreach (GridViewRow row in grvPreCargue.Rows) { CheckBox check = row.FindControl("chkSeleccionar") as CheckBox; if (check.Checked) { objPrecargueProduccion.ActualizarMomento(int.Parse(row.Cells[2].Text), 2); } } ConsultarCertificado(); }