SEARCH
0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Prev | Current Page 905 | Next

Joseph W. Lowery

"Dreamweaver CS3 Bible"

Every form needs some type of connection to a
Web server, whether it is through one of the Dreamweaver server models or a common gateway interface
(CGI) script.
Forms, like HTML tables, are self-contained units within a Web page. All the elements of a form are contained
within the form tag pair
and
. You cannot nest forms as you do tables, although
there??™s nothing to stop you from having multiple forms on a page.
The most commonly used attributes of the
tag include the following:
n method??”Tells the browser and the Web server how to present the form contents to the application
that will process the form. The two possible method values are get and post. The get
method passes the attached information with a URL; this method places limitations on the amount
and format of data that can be passed to the application. The post method enables the application
program to receive the information as standard input and imposes no limits on the passed data.
n action??”Determines what should be done with the form content. Most commonly, action is
set to a URL for running a specific Web application or for sending e-mail.
Typical HTML for a tag looks something like the following:


Pages:
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917