property FormString: string;
Description
Gets a list of request parameters in the "application/x-www-form-urlencoded" format.
This is the default encoding type for HTML forms. The data is sent as a single query string in the body of the HTTP message. Name/value pairs are separated by ampersands (&), and names are separated from values by equals symbols (=). For example:MyVariableOne=ValueOne&MyVariableTwo=ValueTwo
Non-alphanumeric characters are replaced by %HH, where HH represents the ASCII code of the character.
This property is read-only.