private void BindRoleList()
        {
            DropDownListRole.DataSource     = EmployeeRole.GetAccountRoleListLimited();
            DropDownListRole.DataTextField  = "Description";
            DropDownListRole.DataValueField = "Description";
            DropDownListRole.DataBind();

            if (DropDownListRole.Items.Count > 1)
            {
                DropDownListRole.Items.Insert(0, new ListItem("Please select", "0"));
            }

            string username = Page.User.Identity.Name.ToString();

            if (username == "MatthewP" || username == "admin" || username == "AlidaP")
            {
            }
            else
            {
                DropDownListRole.Items.Remove("SUPPLIER");
            }
        }