Setup AspNetSqlMembershipProvider with no Password attempt window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to lock out a user after 5 failed password attempts with no Password
attempt window. Meaning after 5 bad attempts, the account is locked until an
administrator unlocks the account. How do I accomplish this with the
AspNetSqlMembershipProvider provider?
 
THat is default, but you can set it up in the web.config file. To the
provider, add the following

maxInvalidPasswordAttempts="5"

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

********************************************
Think outside the box!
********************************************
 
Back
Top