Answer:
PasswordAttemptWindow is the property which gives the time in minutes.
It is generally written in the Web.Config file
ex:
<configuration>
<system.web>
<membership defaultProvider="MyProvider">
<providers>
<add
name="MyProvider"
type="System.Web.Security.SqlMembershipProvider"
passwordAttemptWindow="30"/>
</providers>
</system.web>
</configuration>
The value is 30 minutes in this case.
|
Alert Moderator