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 ASP.NET MVC that closely fits my needs.
I'm just looking for general guidance on where to start.