Exemple #1
0
        public static string GetString(string name)
        {
            string ckey  = "_setting_" + name;
            string value = CacheService.Get(ckey) as string;

            if (string.IsNullOrEmpty(value))
            {
                value = SiteData.GetSetting(name);
                if (value != null)
                {
                    CacheService.AddSliding(ckey, value);
                }
            }

            return(value);
        }