Skip to content

UrlParameter - cWebHttpHandler

Extracts a specific GET parameter from the query string

Type: Function
Return Data Type: String

Parameters

Parameter Type Description
sName String The name of the GET parameter (..?name=value)

Syntax

Function UrlParameter String sName Returns String

Call Example

Get UrlParameter sName to StringVariable

Description

This function extracts a specific GET parameter from the query string. This value is always escaped HTML.

Sample

the query string:

?cookie=Harm%26John%26&Result=This is a test QueryString!

results in this value in UrlParameter:

Harm&John&

Return Value

The specified GET parameter from the query string.