Well I'm using membership now and haven't seen that kind of functions.
You will have to do it all by yourself but the login control has an event where you can hook in
Sub OnAuthenticate(ByVal sender As Object, ByVal e As AuthenticateEventArgs)
You can put your own code in this to check what the status is of your user trying to login.
- When everything is ok
- you can use Membership.ValidateUser( username, password)
- when everything is not ok
- you can set e.Authenticated = false
Main Topics
Browse All Topics





by: justinbilligPosted on 2008-11-20 at 10:45:43ID: 23006728
Unless you set thier active directory information to expire or to require new user validation your going to have to create a solution for this. It is fairly simple to do so. You can validate user credentials & membership information on login.