private void CargarDatos()
        {
            int id_Ide_Puesto;

            id_Ide_Puesto = objUtilidades.descifrarCadena(Request.QueryString["id"]);
            List <identificacion_puesto> Lista_Ide_Puesto = new List <identificacion_puesto>();

            Lista_Ide_Puesto = Mgr_Riesgos.Get_IdentificacionPuesto(id_Ide_Puesto);

            foreach (var item in Lista_Ide_Puesto)
            {
                txtSucursal.Text          = item.puesto_trabajo.area.sucursal.nombre;
                txtPuestos.Text           = item.puesto_trabajo.nombre;
                txtArea.Text              = item.puesto_trabajo.area.nombre;
                txtDescripcionPuesto.Text = item.puesto_trabajo.descripcion;

                foreach (var itemFactor in item.identificacion_peligro.factor_identificacion)
                {
                    txtTipoRiesgo.Text       = itemFactor.factor_riesgo.tipo_riesgo.nombre;
                    txtFactorRiesgo.Text     = itemFactor.factor_riesgo.nombre;
                    txtConsecuencias.Text    = itemFactor.consecuencias;
                    txtTiempoExposicion.Text = itemFactor.tiempo_exposicion;
                }

                int contadorEpp = 1;
                foreach (var itemEpp in item.puesto_trabajo.puesto_trabajo_epp)
                {
                    txtEpp.Text = txtEpp.Text +
                                  "<div class='col-md-4'>" +
                                  "<strong>Epp N°</strong>  " + contadorEpp + "<br/>" +
                                  "<strong>Nombre:</strong>  " + itemEpp.epp.nombre + "<br/>" +
                                  "<strong>Tipo de Epp:</strong>  " + itemEpp.epp.tipo_epp.nombre +
                                  "</div>";
                    contadorEpp++;
                }
            }
        }