Is it possible for when someone logs into a protected ASPRunnerPro section, that the person can select to be "remembered" and not have to put in his username and password again. So they stayed logged all the time?
Here is the basic idea of how you can make it work.
In AfterSuccessfulLogin event save username and password to cookies.
In BeforeLogin event you can check if username/password cookies exist, retrieve them and run a query against database verifying credentials. If username/password are correct you can populate security related session variables like Session("UserID") and redirect user to one of pages. More info on session variables: