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("
");
//sb.Append("Copyright © 1999-2006 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().Replace("\r\n","
"));
//sb.Append("\r\nTechnical information:
");
//sb.Append(Util.FullSupportInfo());
//sb.Append("\r\nSession information:
");
//sb.Append(Util.FullSettingsInfo());
litlic.Text = sb.ToString();
}
}