Form with method='post' and enctype='application/x-www-form-urlencoded' Attributes

Interact with form and click Submit.

Form Data String Sent In Body Of HTTP POST Request On Last Submit
 
Textboxes
Control Loaded With Data From Last Submit Control Data From Last Submit
Textareas
Control Loaded With Data From Last Submit Control Data From Last Submit
Selectboxes (Dropdowns)
Control Loaded With Data From Last Submit Control Data From Last Submit
Checkboxes
Control Loaded With Data From Last Submit Control Data From Last Submit (1)
(1) For checkbox, data is submitted only if the checkbox is checked. For example, for a checkbox with name='nameAttributeValue' attribute: 1.) if the checkbox is unchecked, nothing is submitted and the JavaScript nameAttributeValue property is undefined; and 2.) if the checkbox is checked, nameAttributeValue=on is submitted if the value attribute is not used, or nameAttributeValue=valueAttributeValue is submitted if the value attribute is used.
Radio Buttons
Control Loaded With Data From Last Submit Control Data From Last Submit (1)


(1) For radio buttons, data is submitted only if a radio button is checked and it corresponds only to the checked radio button. For example, for radio buttons with name='nameAttributeValue' attribute: 1.) if the radio buttons are unchecked, nothing is submitted and the JavaScript nameAttributeValue property is undefined; and 2.) if a radio button is checked, nameAttributeValue=valueAttributeValue is submitted, where valueAttributeValue is from the value attribute of the checked radio button.