|
Often you need to save data from the login table in session
variables for later use. For this purpose you can use AfterSuccessfulLogin
event.
Note: Change
the values listed in red to
match your specific needs.
|
Session("FirstName") = data("FirstName")
|
Then you can use Session("FirstName")
as default value of any field or in other events.
|