Scenario : A web application with user login, roles and permissions.
Question :
- Is it better to start with Visual Studio's / Visual Web developer Express edition's project wizard which contains the user management with it OR start an empty project?
- If started with wizard, How can I move the membership and role Database tables to my own database?
- Programatically working with Membership and roles. How?
- If started with empty project, How can I manage membership and roles etc. ?
- How to add new fields in user profile?
I am in student level in .NET. Above are some confusions I encountered while trying to start developing a project. It might be some silly question. Please do not ignore. Guide me with some helpful hints and good links if necessary.
EDIT:
I found a good tutorial here : http://www.codeproject.com/KB/aspnet/ASPDOTNETauthentication.aspx It solved 50% of my problem.