Exemple #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     B_User buser = new B_User();
     buser.CheckIsLogin();
     this.LblSiteName.Text = SiteConfig.SiteInfo.SiteName;
     string UserName = HttpContext.Current.Request.Cookies["UserState"]["LoginName"];
     M_UserInfo info = buser.GetUserByName(UserName);
     if (info.IsNull)
     {
         Response.Redirect("Login.aspx");
     }
     else
     {
         this.LblUserName.Text = info.UserName;
         this.LblEmail.Text = info.Email;
         this.LblGroupName.Text = info.GroupID.ToString();
         this.LblUnreadMsg.Text = B_Message.UserMessCount(UserName).ToString();
         this.LblRegTime.Text = info.RegTime.ToString();
         this.LblLoginTimes.Text = info.LoginTimes.ToString();
         this.LblLastLoginTime.Text = info.LastLoginTimes.ToString();
         this.LblLastLoginIP.Text = info.LastLoginIP;
         this.LblLastLockTime.Text = info.LastLockTime.ToString();
         this.LblChgPswTime.Text = info.LastPwdChangeTime.ToString();
     }
 }
Exemple #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!this.Page.IsPostBack)
     {
         B_User buser = new B_User();
         buser.CheckIsLogin();
         this.m_t = DataConverter.CLng(Request.QueryString["t"]);
         if (this.m_t == 0)
             this.m_t = 1;
     }
 }
Exemple #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     B_User buser = new B_User();
     buser.CheckIsLogin();
 }