I'm using the ASP.NET membership provider for authentication of users in my web app.
I want to do two things
- To enable the client to configure settings such as maxInvalidPasswordAttempts and passwordAttemptWindow without having to know about the web.config (e.g. through a UI)
- To have the ability to share these settings across several applications so can define them once in a SQL database then all web apps on the server can use the same settings.
I'm not sure if either of these are possible though.