The ASP.Net MVC 1.0 (Final) project template has basic Membership built in, but I need to extend it in two ways:
- Email Confirmation to validate new accounts.
- Additional fields on the registration view, such as "Home Street Address" and "Department Number"
I am planning to modify the template files such as Controllers/AccountController.cs and Views/Account/Register.aspx, but really I'm not sure where to start.
I have found many articles that somewhat apply (such as this one at aspnet.4guysfromrolla.com), but trying to implement an ASP.Net WebForms tutorial within ASP.Net MVC could be a waste of time if there is a better way to get started or an implementation already in MVC that closely fits my needs.
I'm just looking for general guidance on where to start. Thanks for helping someone new to this framework!