In that case, you are not going to be able to use a CreateUserWizard. The CreateUserWizard is expressly designed for end users to create their own accounts.
To do this, you're probably going to have to develop a different interface that works with the MembershipProvider directly and calls its CreateUser method, which takes as parameters the name of a new user, a password, e-mail address, etc. and inserts a new user for the application into the data source; and returns a MembershipUser object populated with the info of the new user.
|