Developer’s Guide SoundPoint IP / SoundStation IP
Note |
| The Microbrowser supports both the GET and POST methods for submitting forms. | ||
|
| Nesting forms within tables is supported. However, nesting of one form tag within | ||
|
| another is not supported and may lead to unexpected results. | ||
|
|
|
|
|
|
| <form> |
|
|
|
| The form element creates a form for user input. A form can contain text fields, | ||
|
| check boxes, radio buttons and more. Forms are used to pass user data to a | ||
|
| specified URL. |
| |
|
| The following attributes are supported: |
| |
|
|
|
| |
| Attribute | Value/s | Description | |
|
|
|
| |
| action | URL | A URL that defines where to send | |
|
|
| Ex: http://www.google.com | the data when the submit button is |
|
|
| pushed | |
|
|
|
| |
|
|
|
| |
| method | get | The HTTP method for sending | |
|
|
| post | data to the action URL. Default is |
|
|
|
| get. |
|
|
|
| method="get": This method |
|
|
|
| sends the form contents in the |
|
|
|
| URL: |
|
|
|
| URL?name=value&name=value. |
|
|
|
| Note: If the form values contains |
|
|
|
| |
|
|
|
| 100 characters you MUST use |
|
|
|
| method="post". |
|
|
|
| method="post": This method |
|
|
|
| sends the form contents in the |
|
|
|
| body of the request. |
|
|
|
| Note: Most browsers are unable to |
|
|
|
| bookmark post requests. |
|
|
|
| |
| name | form_name | Defines a unique name for the | |
|
|
|
| form |
|
|
|
|
|
2 - 4