|
SESSION("UserID") |
Logged user ID |
|
SESSION("GroupID") |
GroupID that user belongs to. Populated if User Group Security turned on. |
|
SESSION("language") |
|
|
SESSION("MyURL") |
If user is trying to access one of password-protected pages directly
i.e. pagename_edit.asp?editid1=3 this page address is saved in
SESSION("MyURL") variable and user is redirected to the
login page.
After successful login user will be redirected to that page. |
|
SESSION("AccessLevel") |
ACCESS_LEVEL_GUEST - guest user
ACCESS_LEVEL_USER - regular user
ACCESS_LEVEL_ADMINGROUP - user belongs to the admin group
ACCESS_LEVEL_ADMIN - obsolete
|
|
SESSION("OwnerID") |
OwnerID value from the login table. Obsolete |
|
SESSION("_<table name>_OwnerID") |
OwnerID value from the login table that applies to <table name> table. |
|
SESSION("<table name>_search") |
0 - show all records
1 - basic search
2 - advanced search |
|
SESSION("<table name>_searchfield") |
Basic search field |
|
SESSION($strTableName."_searchoption") |
Basic search option (Equals, Contains, etc) |
|
SESSION($strTableName."_searchfor") |
Basic search for phrase |
|
SESSION($strTableName."_pagenumber") |
Current page number |
|
SESSION($strTableName."_asearchnot") |
Advanced search - array with NOT option value for each field |
|
SESSION($strTableName."_asearchopt") |
Advanced search - array with search option value for each field
(Equals, Contains etc) |
|
SESSION($strTableName."_asearchfor") |
Advanced search - array with with search for value for each field |
|
SESSION($strTableName."_asearchfor2") |
Advanced search - array with with second search for value for each
field (Between search) |
|
SESSION($strTableName."_asearchfortype") |
AND or OR search |
|
SESSION($strTableName."_mastertable") |
Master table name |
|
SESSION($strTableName."_masterkey".$i) |
Master table foreign key values |
|
SESSION($strTableName."_orderby") |
Order by clause (aFieldName or dFieldName). "a" means
ascending, "b" means descending sort order. |
|
SESSION($strTableName."_pagesize") |
Number of records per page |
|
SESSION($strTableName."_sql") |
SQL query without WHERE and ORDER BY. Populated on the list page to
be used on Print/Export pages. |
|
SESSION($strTableName."_where") |
WHERE clause. Populated on the list page to be used on Print/Export pages. |
|
SESSION($strTableName."_order") |
ORDER By clause ("Order by make asc"). Populated on the
list page to be used on Print/Export pages. |
|
SESSION("BackURL") |
URL to return after password was changed |
|
SESSION($strTableName."_SelectedSQL") |
Export page - SQL query when page is in "export selected" mode |
|
SESSION($strTableName."_SelectedWhere") |
Export page - WHERE clause when page is in "export selected"
mode |