This topic is locked

Validate Login only active User

6/11/2014 09:34:49
ASPRunnerPro General questions
T
Thani author

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)

Sergey Kornilov admin 6/11/2014

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.