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");
// with a value of Alaska
request.addPOSTParameter( "selectedState" , "AL");
See Also
- removePOSTParameter() [request] - Removes a POST parameter from the request
scraper on 07/16/2010 at 5:15 pm
- Printer-friendly version
- Login or register to post comments