I am trying to use ASP.NET forms authentication functionality but it is not possible for me to add every member to the web config file because there may be thousands using the application. I was just wondering is it possible to do the following all within form authentication?
- User signs in.
- Flag the user to be authorized.
- Allow access.
You can Use Membership provider, with the create user method. Membershipprovider.createuser
pseudocode for creating
and also you can refer this link to implement