This commit is contained in:
48
source/WBI/help.aspx.cs
Normal file
48
source/WBI/help.aspx.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
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("<br />");
|
||||
|
||||
if (Util.HotfixVersion > 0)
|
||||
sb.Append("(Patch " + Util.HotfixVersion.ToString() + ")<br />");
|
||||
|
||||
|
||||
sb.Append("Copyright © 1999-2018 Ground Zero Tech-Works Inc.<br />");
|
||||
sb.Append("All rights reserved<br />");
|
||||
this.litVer.Text = sb.ToString();
|
||||
|
||||
sb.Length = 0;
|
||||
|
||||
//sb.Append("License information:<br />");
|
||||
//sb.Append(AyaBizUtils.View());
|
||||
sb.Append("\r\nTechnical information:<br />");
|
||||
sb.Append(Util.FullSupportInfo());
|
||||
sb.Append("\r\nSession information:<br />");
|
||||
sb.Append(Util.FullSettingsInfo());
|
||||
litTechInfo.Text = sb.ToString();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user