private FormsAuthenticationUserCollection GetUsers()
        {
            if (_users == null)
            {
                var section = GetAuthenticationSection();
                var creds = section.Forms.Credentials;
                _users = section.Forms.Credentials.Users;
            }

            return _users;
        }
        protected FormsAuthenticationUserCollection getUsers()
        {
            if (_users == null)
            {
                AuthenticationSection section = getAuthenticationSection();
                FormsAuthenticationCredentials creds = section.Forms.Credentials;
                _users = section.Forms.Credentials.Users;
            }

            return _users;
        }