Ejemplo n.º 1
0
 protected void btnObservar_Click(object sender, EventArgs e)
 {
     if (txtComentario.Text == "")
     {
         ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "mensaje", "swal({type: 'error',title: 'ERROR!',text: 'No inserto ninguna OBSERVACIÓN!!'});", true);
         return;
     }
     sol.VS_Comentario = txtComentario.Text;
     sol.PK_IS_Cod     = Convert.ToInt32(Session["idSolicitudPago"]);
     ctrsol.actualizarEstadoObservacion(sol);
     mostrarmsjPAGO(sol);
 }