I have a database which has form authentication tables for an website [let say website A], now I have attached a new website [Website B] to the same database, in this website [Website B] also I have to provide login/authentication which would be separate from the website A authentication system. So I want to have separate table for the users of new website. Specification:
Website B will not have more than 5 users
Hashing/Salting of password is required
Few columns required.
Suggest me how can I achieve it?
will there be any open source membership provider like we have .NET membership provider [form authentication].
You can save the hashed password in the web.config file and than can read it. This is not one of the best approach but will work for you. To store information for 5 User is not going to consume space in Web.Config file.