using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Text; using GZTW.AyaNova.BLL; using System.Reflection; public partial class help : BaseThemePage { protected void Page_Load(object sender, EventArgs e) { if (Util.CurrentUser.IsClientOrHeadOfficeAccount) { Util.Denied(Context); } this.Title = Util.LocaleText("UI.Help.AboutAyaNova"); StringBuilder sb = new StringBuilder(); sb.Append("AyaNovaź WBI "); sb.Append(Util.Version); sb.Append("
"); if (Util.HotfixVersion > 0) sb.Append("(Patch " + Util.HotfixVersion.ToString() + ")
"); sb.Append("Copyright © 1999-2020 Ground Zero Tech-Works Inc.
"); sb.Append("All rights reserved
"); this.litVer.Text = sb.ToString(); sb.Length = 0; //sb.Append("License information:
"); //sb.Append(AyaBizUtils.View()); sb.Append("\r\nTechnical information:
"); sb.Append(Util.FullSupportInfo()); sb.Append("\r\nSession information:
"); sb.Append(Util.FullSettingsInfo()); litTechInfo.Text = sb.ToString(); } }