I had the same problem recently, and I found that when you make a call Membership.CreateUser, you can make the user automatically create as true by inserting it like this:
Membership.CreateUser(userName, Password, eMail, passwordQuestion, passwordAnswer, isApproved)
isApproved is a bool and can be set to true when the create user is called.
source
share