-1

When dragging a CreateUserWizard control into the ASP.NET application, the "Create user" button uses the default database: "aspnetdb" to insert or create the new user.

I want to use the CreateUserWizard control of ASP.NET to create my own users (from my own database), but I cannot do so, because I cannot access the click event of the submit button whose text is "Create user" (that is a part of the CreateUserWizard control)

How can I do this?

Thanks

yazanpro
  • 4,512
  • 6
  • 44
  • 66

1 Answers1

1

You will need to use a custom membership provider and override CreateUser.

Phaedrus
  • 8,351
  • 26
  • 28
  • Please can you provide me with an additional clue... I added my own answer to clarify my situation. – yazanpro Feb 16 '11 at 19:39