Polycom SIP 2.2.0 Developer's Manual page 14

Sip 2.2.0 web application
Hide thumbs Also See for SIP 2.2.0:
Table of Contents

Advertisement

Developer's Guide SoundPoint IP / SoundStation IP
Note
2 - 4
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
action
URL
Ex: http://www.google.com
method
get
post
name
form_name
Description
A URL that defines where to send
the data when the submit button is
pushed
The HTTP method for sending
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
non-ASCII characters or exceeds
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.
Defines a unique name for the
form

Advertisement

Table of Contents
loading

Table of Contents