protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                TimerLogIn.Enabled      = false;
                iAccountType            = 0;
                iEmployeeKey            = 0;
                txtLastName.Text        = "";
                txtFirstName.Text       = "";
                txtMiddleName.Text      = "";
                txtEmailAdd.Text        = "";
                txtDomainAccount.Text   = "";
                txtUserName.Text        = "";
                txtPassword.Text        = "";
                txtConfirmPassword.Text = "";
                lblStatus.Text          = "";

                lblDomainAccount.Visible = false;
                txtDomainAccount.Visible = false;
                lblIDNum.Visible         = false;
                txtIDNumber.Visible      = false;

                DataTable dtUserType = AccountClass.UserTypeTable();
                AccountType.DataSource     = dtUserType;
                AccountType.DataTextField  = "UserType";
                AccountType.DataValueField = "PK";
                AccountType.DataBind();
            }
        }