|
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.
Function AfterSuccessfulLogin(username,password,data)
Session("FirstName"] = data("FirstName")
End Function
|
Then you can use Session("FirstName"]
as default value of any field or in other events.
|