Files
ayanova7/source/WBI/globalx.aspx.cs
2018-06-29 19:47:36 +00:00

43 lines
1.3 KiB
C#

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 GZTW.AyaNova.BLL;
using System.Text;
public partial class globalx : BaseThemePage
{
protected void Page_Load(object sender, EventArgs e)
{
if (Util.CurrentUser.IsClientOrHeadOfficeAccount)
{
Util.Denied(Context);
}
this.Title = Util.LocaleText("UI.Help.License");
StringBuilder sb = new StringBuilder();
//sb.Append("AyaNova® WBI ");
//sb.Append(Util.Version);
//sb.Append("<br />");
//sb.Append("Copyright © 1999-2006 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().Replace("\r\n","<br />"));
//sb.Append("\r\nTechnical information:<br />");
//sb.Append(Util.FullSupportInfo());
//sb.Append("\r\nSession information:<br />");
//sb.Append(Util.FullSettingsInfo());
litlic.Text = sb.ToString();
}
}