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

            objMonitoreoRequerimientoNotificacion.intIdCodAppR = int.Parse(Session["intIdCodAppR"].ToString());
            objMonitoreoRequerimientoNotificacion.strNombreNotificacion = txtNombrePersonaNotificar.Text;
            objMonitoreoRequerimientoNotificacion.strCorreoNotificacion = txtCorreoNotificar.Text;
            objCMonitoreoAplicativo.insertarRequerimientoCorreoNotificar(objMonitoreoRequerimientoNotificacion);

            gvNotificaciones.DataBind();

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

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