RE: Still trying to fix authentication on an ASP.net application: some accounts work and others don't

2013-07-10 Thread GregAtGregLowDotCom
Hi Katherine, I'll have to let someone else that uses that membership provider answer that one. I took one look at it when it was released and decided it wasn't for me. I felt like I was in a parallel universe. Everyone in the room was talking about how fast it was to build and I was looking

Re: Still trying to fix authentication on an ASP.net application: some accounts work and others don't

2013-07-10 Thread Mark Hurd
Here's some DotLisp methods to extract locked-out details: ; This retrieves the list of users currently locked-out. (def (locked-out) (sqlselect username from aspnet_users u join aspnet_membership m on u.userid=m.userid where islockedout0 :connect *default-connect-string :returns 'col)) ;

RE: Still trying to fix authentication on an ASP.net application: some accounts work and others don't

2013-07-09 Thread GregAtGregLowDotCom
Hi Katherine, It's not saying that the account or the password are wrong. It's saying that the account is locked out. Is it set up to automatically unlock accounts after a period of time? Is there a flag in the database that holds the authentication details that says whether or not an account