I have an existing ASP.NET web application that is for public use and any anonymous user can access it. I would like to implement mechanism for users to sign up. The first thought that crossed my mind is to use the ASP.NET membership API.
So, If I use the Membership API:
- Can I integrate it with an existing SQL express database? I would rather not have two separate databases
- Can I choose not to have GUIDs for User IDs?
- Can I install only the tables needed for Membership to work? I would not want to have tables for say WebParts as this website will never have WebParts.
- Anonymous users will still have access to all the pages (I might limit the features though). Can I do this and can I somehow track anonymous users?
- Can I customize the create user account control to not have security question and answer?
Any useful video tutorials on membership api is really appreciated