Icon THTMLFormMethod

Unit: WebUI

THTMLFormMethod = (fmGet,fmPost,fmHead,fmPut,fmDelete)

Available In: Client Applications

The THTMLFormMethod enumerated type is used to specify the HTTP method to use for the THTMLForm component when the Submit method is called to submit the form values to the web server.

ElementDescription
fmDeleteSpecifies that the HTTP DELETE method will be used to submit the HTML form values.
fmGetSpecifies that the HTTP GET method will be used to submit the HTML form values.
fmHeadSpecifies that the HTTP HEAD method will be used to submit the HTML form values.
fmPostSpecifies that the HTTP POST method will be used to submit the HTML form values. This is the default method.
fmPutSpecifies that the HTTP PUT method will be used to submit the HTML form values.
Image