protected void btnGuardar_Click(object sender, EventArgs e) { Inscripcion insc = new Inscripcion(); insc.CodigoCursoGestion = Convert.ToInt32(txtcocGestion.Text); insc.Fecha = Convert.ToDateTime(txtFec.Text); insc.CodigoEstudiante = Convert.ToInt32(txtcodEst.Text); if (insc.guardar()) { lblResp.Text = "Inscripcion Guardada..!"; } else { lblResp.Text = "Error al Registrar"; } detalleInscripcion detInsc = new detalleInscripcion(); foreach (GridViewRow row in gvApoderado.Rows) { detInsc = new detalleInscripcion(); detInsc.IdcodApoderado = Convert.ToInt32(row.Cells[0].Text); detInsc.Relacion = ((TextBox)row.Cells[6].FindControl("txtQty")).Text; detInsc.guardar(); } this.mostrar(); }