CLICK HERE

Earning More

Clickz

Sunday, December 5, 2010

Text Field (with a Submit Button) coding

<html>
<body>
<title>Kuldeep Ji</title>

<form name="input" action="html_form_action.asp" method="get">
First name: <input type="text" name="FirstName" value="Mickey"><br>
Last name: <input type="text" name="LastName" value="Mouse"><br>
<input type="submit" value="Submit">
</form>

<p>If you click the "Submit" button, the form-data will be sent to a page called "html_form_action.asp".</p>

</body>
</html>

1 comment: