using System; using System.Web; using System.Configuration; namespace Yavsc.Helpers { /// /// Yavsc helpers. /// public static class YavscHelpers { private static string siteName = null; /// /// Gets the name of the site. /// /// The name of the site. public static string SiteName { get { if (siteName == null) siteName = ConfigurationManager.AppSettings ["Name"]; return siteName; } } } }