wzp
2022-10-18 0ae3194bdd3dd29e5ad1450328a19f7fdbe53ea9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
////新加程序
 
//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";
//        }
 
 
        
 
 
        
//    }
//}