示例#1
0
 protected override void Render(HtmlTextWriter writer)
 {
     if (!CopyrightLicenser.CheckCopyright())
     {
         writer.Write(string.Format(this.renderFormat, HiContext.Current.SiteSettings.SiteUrl));
     }
 }
示例#2
0
 protected override void Render(HtmlTextWriter writer)
 {
     if (!CopyrightLicenser.CheckCopyright())
     {
         writer.Write(string.Format(this.renderFormat, SettingsManager.GetMasterSettings(false).SiteUrl));
     }
 }
示例#3
0
 public HiConfiguration()
 {
     if (!CopyrightLicenser.CheckCopyright())
     {
         throw new Exception("非法部署,请与供应商联系:");
     }
 }