tags:

views:

14

answers:

1

Hi,

I am going to create a couple asp.net pages with login page. I am thinking about Forms authentication. The users are around 1000 to 5000. What is the best way to achieve this? I appreciate any help.

Thanks..

A: 

Form Authentication with SQL Server is a good idea. Its flexible, but if you want full control you best bet is to come up with a custom solution for your 5k users.

Justin
http://msdn.microsoft.com/en-us/library/ff649314.aspx is good place to start reading up on form authentication with SQL server. We used it once, but it become a bottle neck when the project went global. We implemented our own Authentication Database.
Justin