Please note I’m totally new to ASP.NET..
How can I have the username, password and other profile details sent by email to a site admin on new user registration?
I’m a bit at a loss on how the CreateUserWizard works, if the password field is at all available in code? Would I need to override some method, and where can I view the actual code of the Register class?
Well, there is an event
OnCreatedUserthat is fired when the user is created.This you can handle. I do not think the password is actually availabe (anyway like other people wrote you do not want that in the email to your admin). However the rest of the data you can eMail from this event to your admin.
I do something similar here
Actually in this code cuw.Password is available, so you might even have access to the password. But once again I advise you against mailing the password.