Create User Control in ASP .NET 2.0

  • Thread starter Thread starter Roman
  • Start date Start date
R

Roman

I would like to slightly change the functionality of the create user
control.

1. When creating a user the password shouldn't be supplied. Rather the
password should be generated much like recover password.
2. The user then will receive an e-mail saying what the generated
password is.

This will validate their e-mail

Can I do something like that in the way of configuration or would I
need to customize the create user control?

If later, would anyone have a suggestion how to approach this or
perhaps a sample code.

Thanks in advance
 
There is an AutoGeneratePassword property of the CreateUserWizard control.
Set this to True. You will also have to setup the control for sending email
to the user so they receive thier new password.
 
Thanks a lot.


S. Daum said:
There is an AutoGeneratePassword property of the CreateUserWizard control.
Set this to True. You will also have to setup the control for sending email
to the user so they receive thier new password.
 
Back
Top