GetQueryString method: Message class

Syntax

GetQueryString(Parameter_Name)

Description

Use the GetQueryString method to obtain the parameter values of a query string.

Note:

This method has been desupported and remains for backward compatibility only. Use the IBConnectorInfo collection GetQueryStringArg method instead.

Parameters

Parameter Description

Parameter_Name

Specify the parameter name you want to obtain.

Returns

A string containing the value of the parameter.

Example

Local Message &request;
Local Rowset &Rowset;
Local String &emplid;

&request = %IntBroker.GetMessage();
&Rowset = &request.GetRowset();
&emplid = &request.GetQueryString("EMPLID");