| Setting | Description | Reference![]() | Required | Version | |
|---|---|---|---|---|---|
| Session("dbCSV") = 0 | or 1, defaults to 0. Adds a link from the Lister to display the table as a CSV comma-delimited file | No | Registered | View | |
| Session("dbHeaderString") | different header strings for each table config | No | Enhanced | View | |
| Session("dbChangeRecsPerPage") = "Yes" | allow user to change recsperpage. If you use this, be sure to add this line to your table config files:
if session("userRecsPerPage")<>"" then session("dbRecsPerPage") = session("userRecsPerPage") | No | Enhanced | View | |
| Session("dbSortCols") = "00010110" | Similar to dbDispView, this designates which fields should be sortable. Based on a suggestion from Keith Cook, who donated his code changes for this feature. | No | Enhanced | View | |
| Session("dbUpdateField<x>") = <value> | After updating a record, field x will be set to this value. | No | Public | View | |
| Session("dbTotalFields") = "00101" | Totals the specified fields at the bottom of each page, in this case fields 3 and 5. | No | Public | View | |
| Session("dbSubTable") = "Title, ConfigFile, LinkingField" | Allows sub-tables. | No | Public | View | |
| Session("dbBoolean") = "CHECKBOX" | display a checkbox for yes/no fields instead of radio buttons | No | Public | View | |
| Session("dbFooterString") | different footer strings for each table config | No | Enhanced | View | |
| Session("dbRequiredFields") = "011101" | 1's or 0's representing whether a red * is displayed beside each field. Does not validate data, just displays the star. | No | Public | View |