private void Cargar_Grid()
        {
            List <GS_GetAllModulosResult> lstModulos;

            try
            {
                PlanificacionWCFClient objPlanificacionWCF = new PlanificacionWCFClient();

                lstModulos = objPlanificacionWCF.Perfil_Listar(((Usuario_LoginResult)Session["Usuario"]).idEmpresa, ((Usuario_LoginResult)Session["Usuario"]).codigoUsuario).ToList();

                grdMantModulos.DataSource = lstModulos;
                grdMantModulos.DataBind();

                ViewState["lstModulos"] = JsonHelper.JsonSerializer(lstModulos);
            }
            catch (Exception)
            {
                throw;
            }
        }