protected void btnEvaluar_Click(object sender, EventArgs e) { int CodId = Convert.ToInt32(ddlEmp.SelectedValue); int idEvaluador = Convert.ToInt32(Session["IdEvaluador"].ToString()); int puntaje = Convert.ToInt32(txtPuntaje.Text); string justificacion = txtJust.Text; DateTime fecha = DateTime.Today; Emprendimiento emp = new Emprendimiento(); if (CodId > 0 && idEvaluador > 0 && puntaje >= 0 && puntaje <= 4 && justificacion.Length >= 100 && justificacion.Length <= 500 && emp.buscar(CodId)) { Evaluacion ev = new Evaluacion() { Emprendimiento = emp, Puntaje = puntaje, Justicacion = justificacion, Fecha = fecha, Estado = true, }; if (ev.actualizar(idEvaluador)) { lblMensaje.Text = "Se Ingreso la evaluacion correctamente"; btnEvaluar.Visible = false; } } else { lblMensaje.Text = "Ingresar datos de evaluacion correctamente"; } }