URL

Returns the value of the URL parameter passed to the current page. If the URL is a Key Value pair, return the column value of the XML structure.

Syntax

= URL(value)

= URL(value, column)

Parameters

value

A URL parameter whose value is to be found. The parameter should be specified as a string.

column

(optional)

An XML column value passed in an XML structure to the URL. It should be specified as a string.

Return Type

String

Examples

Example

Returns

= URL("Orders")

The value of Orders URL parameter passed to the page.

= URL("Username")

The value of Username passed to the page as URL parameter.

= URL("Orders","OrderID")

The value of OrderID which is passes as an XML structure to the page.