What are the attributes of the <FORM> tags? What are their functions?

The two attributes are ACTION and METHOD
The ACTION gives the name of the ASP file that should be opened next by which this file can access the information given in the form
The METHOD determines which of the two ways (POST or GET) the browser can send the information to the server

Showing Answers 1 - 1 of 1 Answers

name
method
action

name = to give name for the form
method=get/post
get- if limited data is to be passed to new page opened.
post- if bulk data is to be passed to new page opened.
action = the page to be opened when this form is submitted, to where the data is to be transferred.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions