protected void btnIngresarCorreo_Click(object sender, EventArgs e)
        {
            iftMonitoreoCriticaNotificacion objMonitoreoCriticaNotificacion = new iftMonitoreoCriticaNotificacion();
            cMonitoreoAplicativo objCMonitoreoAplicativo = new cMonitoreoAplicativo();

            objMonitoreoCriticaNotificacion.intIdCodAppM = int.Parse(Session["intIdCodAppM"].ToString());
            objMonitoreoCriticaNotificacion.strNombreNotificacion = txtNombrePersonaNotificar.Text;
            objMonitoreoCriticaNotificacion.strCorreoNotificacion = txtCorreoNotificar.Text;
            objCMonitoreoAplicativo.insertarCriticaCorreoNotificar(objMonitoreoCriticaNotificacion);

            gvNotificaciones.DataBind();

            txtNombrePersonaNotificar.Text = "";
            txtCorreoNotificar.Text = "";

            lblMensaje.Text = "Se registro Correo a Notificar";
        }