LassoScript Utility
Basics Browse Detail

[Client_Username]

Tag Link [Client_Username] Category Client
Type Substitution Source Available No
Support Preferred Version 2.0
Change Unchanged Data Source Any
Output Type String Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0, Lasso 3.x, Lasso 2.5, Lasso 2.0

Description

[Client_Username] returns the username specified by the current client. Usually used in concert with the [Client_Password] tag.

The username which was specified in the HTTP request or URL is returned. This tag cannot be used to retrieve the username which was passed in to [Inline] ... [/Inline] tags using the -Username tag.

Syntax

[Client_Username]

Parameters

No Parameters Required.

Examples

To use the current clien'ts authentication information to load a remote URL:

Use the [Client_Username] and [Client_Password] tags to retreive the current client's authentication information and pass them into the [Include_URL] tag. The following example includes a URL on the www.example.com server.

[Include_URL: 'http://www.example.com/default.lasso',
  -Username=(Client_Username),
  -Password=(Client_Password)]

<html> ... </html>