TC_RouteBLL Routebll = new TC_RouteBLL();
List<TC_RouteInfo> RouteList = new List<TC_RouteInfo>();
TC_RoadSectionBLL RoadSectionbll = new TC_RoadSectionBLL();
List<TC_RoadSectionInfo> RoadSectionList = new List<TC_RoadSectionInfo>();
//获取根节点
TreeViewNode newNode = new TreeViewNode();
RouteList = Routebll.GetListBySql(this.CurrentUserInfo.OrgID);
这段程序页面一运行this.CurrentUserInfo.OrgID就有值,为什么?转到定义 public BaseUserInfo CurrentUserInfo { get; }
这个用户怕是cookie里面存了用户信息,然后访问网站的时候就会自动登录,存到你的session之类的容器里面,然后使用单例之类的设计模式就会得到当前的用户,就会有OrgID了。
你全局搜索下CurrentUserInfo.OrgID, 不就知道哪里被赋值了