Returns any form elements sent by the client to the specified request object.
Syntax
formData( request )
request.formData( )
Parameters
request
|
the request object to use.
|
Returns
bytearray
|
the byte array object containing information sent using the post or get request method.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
icontent = Request( ).formData( )
|