addPOSTParameter

void request.addPOSTParameter ( String key, String value )

Description

Add POST parameter to HTTP request.

Parameters

  • key Name of the POST parameter, as a string.
  • value Value of the POST parameter, as a string.

Return Values

Returns void.

Change Log

Version Description
4.5 Available for all editions.

Examples

Add POST Parameter

 // Add selectedState parameter to the POST variables
 // with a value of Alaska

 request.addPOSTParameter( "selectedState" , "AL");

See Also