////新加程序 //using System; //using System.Collections.Generic; //using System.Web.SessionState; //using System.Web.UI; //using System.Configuration; //namespace Common //{ // public class Base : Page, IRequiresSessionState // { // protected override void OnInit(EventArgs e) // { // if (this.CheckRadius()) // return; // this.Response.Redirect("help.aspx"); // this.Response.End(); // } // public bool CheckRadius() // { // if (this.Application["runningToken"] == null) // this.Application["runningToken"] = (object)""; // string str = this.Application["runningToken"].ToString(); // if (string.IsNullOrEmpty(str)) // { // if (!PubConstant.CheckToken()) // return false; // this.Application["runningToken"] = (object)"YBsoft"; // return true; // } // return str == "YBsoft"; // } // } //}