Returns a hashtable object containing any form elements extracted from the given string using the specified request object.
Syntax
parseRequest( request , string )
request.parseRequest( string )
Parameters
request
|
the request object to use.
|
string
|
the x-www-form-urlencoded encoded string to parse.
|
Returns
hashtable
|
the hashtable object containing any parsed form elements.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
fields = Request( ).parseRequest( content )
|