Re: Counting Login Hits recommendations >>>

2004-08-12 Thread Larry C. Lyons
start with a session variable, session.loginAttempts, and set the initial value to 0 using cfparam. Then with each attempt increment that value on the login processing page. A suggestion, it appears that you're fairly new with CF. I'd reccomend getting Ben Forta's book ColdFusion Web Application Co

Counting Login Hits recommendations >>>

2004-08-12 Thread Steve Kahn
Dear Friends, I want to make a secure login section to a site that I can count the hits and record the user’s last login. My MSsql is set up with: UserID Autonumber UserName varchar Password varchar Date varchar Hits ? LastLogin varchar How do I set the “hits” to an initial value of “0”