Saved Bookmarks
| 1. |
What are the main attributes of the <Form> tag? |
|
Answer» 1. Method: It determines the method of submission of form data to the server. Get and Post are the two form submission methods. Post method is used to pass large volume of data. Also post method is more secure as data entered is not visible during submission. The get method is faster and is used to send lesser volume of data and it is not secure. 2. Action: The URL of the server side program to process the form data is specified by the Action attribute. Eg: <Form Action=”http://www.scert.com/asp/ process.asp”> |
|