Adscend

Click Here



Click Here



Click Here

Sunday 8 September 2013

Form Input Element Submit Button

HTML Form Input Element Submit Button

1.<input type="submit"> creates a submit button for sending web page back to the web server.

2.Every set of Form tags requires a submit button.

3.A submit button is used to send form data to a server.

4.The data is sent to the page specified in the form's action attribute.
When a visitor clicks a submit button, the form is sent to the address specified in the action setting of the <form> tag.


Password boxes use the following attributes

type—submit button.
name—the name of the variable to be sent to the CGI application.
submit—A submit button is used to send form data to a server.
Example: 1
<html>
<body>
<form name="myform" action="http://aspell.org" method="POST">
<div align="center">
<input type="text" size="25" value="Enter your name here!">
<br/><input type="submit" value="Submit">
</div>
</form>
</body>
</html>
Output



If you type some characters in the text field above,
and click the "Submit" button, the browser will send
your input to a page called " http://aspell.org ".


No comments:

Post a Comment