Collecting extra information using Dot Net's standard authentication
I'm using the inbuilt dot net authentication to register users in a simple web site and trying to add some extra information to be collected on registration.
It currently asks for Usernname, emai开发者_StackOverflow社区l, password, confirm password. I'd like to add some extra bits, something like "favourite colour" - just a simple string.
Is there an easy way of doing this? Maybe a simple tutorial I could follow?
Thanks in advance.
You might wanna look into ASP.NET profiles. There is a good intro here - and here.
I was using the CreateUserWizard control, so I had some difficulty implementing the info I learned from Alistad's answer.
This article got me the rest of the way there - http://msdn.microsoft.com/en-us/library/ms178342.aspx
精彩评论