Use this Property inspector to set the properties of the HTML form.
Naming a form makes it possible to reference or control the form with a scripting language, such as JavaScript or VBScript. If you do not name the form, Dreamweaver generates a name using the syntax form
n
, and increments the value of n
for each form added to the page.
POST embeds the form data in the HTTP request.
GET appends the value to the URL requesting the page.
Default uses the browsers default setting to send the form data to the server. Typically the default is the GET
method.
Do not use the GET
method to send long forms. URLs are limited to 8192 characters. If the amount of data sent is too large, data will be truncated, leading to unexpected or failed processing results.
Dynamic pages generated by parameters passed by the GET
method can be bookmarked because all the values needed to regenerate the page are contained in the URL displayed in the browsers Address box. In contrast, dynamic pages generated by parameters passed by the POST
method cannot be bookmarked.
If you collect confidential user names and passwords, credit card numbers, or other confidential information, the POST
method may appear more secure than the GET
method. However, the information sent by the POST
method is not encrypted and can easily be retrieved by a hacker. To ensure security, use a secure connection to a secure server.
The default setting of application/x-www-form-urlencode
is typically used in conjunction with the POST
method. If you are creating a file-upload field, specify the multipart/form-data
MIME type.
If the named window is not already open, a new window with that name opens. The target values are as follows:
_blank opens the destination document in a new unnamed window.
_parent opens the destination document in the parent window of the one displaying the current document.
_self opens the destination document in the same window as the one in which the form was submitted.
_top opens the destination document in the body of the current window. This value can be used to ensure that the destination document takes over the full window even if the original document was displayed in a frame.