protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                UserInfo user = accountsFacade.GetUserBaseInfoByUserID(Fetch.GetUserCookie( ).UserID);
                this.lblAccounts.Text   = user.Accounts;
                lblGameID.Text          = user.GameID.ToString( );
                ddlGender.SelectedValue = user.Gender.ToString( );
                txtUnderWrite.Text      = user.UnderWrite;

                IndividualDatum contact = accountsFacade.GetUserContactInfoByUserID(Fetch.GetUserCookie( ).UserID);
                this.txtAddress.Text      = contact.DwellingPlace;
                this.txtCompellation.Text = contact.Compellation;
                this.txtEmail.Text        = contact.EMail;
                this.txtMobilePhone.Text  = contact.MobilePhone;
                this.txtQQ.Text           = contact.QQ;
                this.txtSeatPhone.Text    = contact.SeatPhone;
                this.txtUserNote.Text     = contact.UserNote;
            }

            Themes.Standard.Common_Header sHeader = (Themes.Standard.Common_Header) this.FindControl("sHeader");
            sHeader.title = "会员中心";
        }