'method' Syntax and Note : method « HTML Attributes Reference « HTML CSS Reference

Home
HTML CSS Reference
1.CSS Attributes and Javascript Style Properties
2.HTML Attributes Reference
3.HTML Tag Reference
HTML CSS Reference » HTML Attributes Reference » method 
'method' Syntax and Note

Note:
    
This attribute defines how to send the form data to the server. 
Possible values are get and post.

The get method appends the form input elements and their data to the underlying URL. 
The get method can be useful when dealing with small amounts of data.
URL length is limited to 2,048 bytes. 

The post method sends the data via an HTTP post transaction.
There is no limititatio using this method.
    
Syntax:
    
<form method="value"> . . . </form>
    

      
      
Related examples in the same category
1.'method' Example
2.method is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.