Hello.
I am working on an MVC 2 application where I need users to add custom fields when they register, for example age, phone number, full name, etc.
Investigating I found this blog entry where they use ASP.NET Profiles and customize the CreateUserWizard control. My problem has been that I cannot get this to work since in MVC I have no code-behind and if I had it, probably it wouldn't work since CreateUserWizard uses ViewState.
All I need is what I have said: Ask users to add custom fields when they register (I have already managed to configure Membership, it works well).
I would like to know if there is a way as simple as the one I found to accomplish what I need, whether it uses Profiles or not.
I hope you can help me,
Sam