Returns any x-www-form-urlencoded encoded string containing information sent using the get request method to the specified request object.
Syntax
queryStringData( request )
request.queryStringData( )
Parameters
request
|
the request object to use.
|
Returns
string
|
the information sent using the get request method.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
qs = Request( ).requestStringData( )
|