Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
I am beginner of ASP Runner Pro. Pls guide me, how to validate login only on active users. (FYI, User name,Password and active status are retrieved from stored sql database)
You can check built-in email activation feature in ASPRunnerPro. Another option - modify SQL of the login table adding WHERE clause i.e.
select * from LoginTable where active=1
This will restrict login for active users only.