LassoScript Utility
Basics Browse Detail

[Shown_Last]

Tag Link [Shown_Last] Category Results
Type Substitution Source Available No
Support Preferred Version 3.0
Change Unchanged Data Source Any
Output Type Integer Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0, Lasso 3.x

Description

[Shown_Last] returns the number of the last record shown from the found set.

This tag can be used within the [Inline] ... [/Inline] tags that perform a database action or in a format file which is the response to an HTML form or URL that performs a database action. This tag cannot be used within [Records] ... [/Records] tags that reference a named inline.

Syntax

[Shown_Last]

Parameters

No Parameters Required.

Examples

To return the number of the last record found by a database search:

Use the [Shown_Last] tag. The following [Inline] ... [/Inline] tags perform a search in the People table of the Contacts database for all records and returns the index of the last record found.

[Inline: -FindAll,
    -Database='Contacts',
    -Table='People',
    -KeyField='ID',
    -MaxRecords=5]
  <br>Showing  records from [Shown_First] to [Shown_Last].
[/Inline]

<br>Showing records from 1 to 5.