Submitting Forms to the Server : Form HTML : Form Control : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Java
Java Tutorial
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Form Control » Form HTML 
Submitting Forms to the Server


<html>
<head><title>For More Information</title>
<SCRIPT LANGUAGE="JavaScript">
     function checkType() {
          if (document.form1.rush.checked) {
               document.form1.action = "http://www.java2s.com";
          }
     }
</SCRIPT>
</head>
   
<body>
<h1>Order Form</h1>
<hr>
<form name="form1" action="http://www.java2s.com"
method="POST" onSubmit="checkType()">
<p>Please provide the following contact information:</p>
<blockquote>
<pre>
    <em>First name </em>
        <input type=text size=25 maxlength=256 name="Contact_FirstName">
    <em>Last name </em>
        <input type=text size=25 maxlength=256 name="Contact_LastName">
    <em>Title </em>
        <input type=text size=35 maxlength=256 name="Contact_Title">
    <em>Organization </em>
        <input type=text size=35 maxlength=256 name="Contact_Organization">
    <em>Work Phone </em>
        <input type=text size=25 maxlength=25 name="Contact_WorkPhone">
    <em>FAX </em>
        <input type=text size=25 maxlength=25 name="Contact_FAX">
    <em>E-mail </em>
        <input type=text size=25 maxlength=256 name="Contact_Email">
    <em>URL </em><input type=text size=25 maxlength=25 name="Contact_URL">
</pre>
</blockquote>
<p>Please provide the following ordering information:</p>
<blockquote>
<pre>
   <strong>QTY     DESCRIPTION</strong>
   <input type=text size=maxlength=name="Ordering_OrderQty0">
   <input type=text size=45 maxlength=256 name="Ordering_OrderDesc0">
   <input type=text size=maxlength=name="Ordering_OrderQty1">
   <input type=text size=45 maxlength=256 name="Ordering_OrderDesc1">
   <input type=text size=maxlength=name="Ordering_OrderQty2">
   <input type=text size=45 maxlength=256 name="Ordering_OrderDesc2">
   <input type=text size=maxlength=name="Ordering_OrderQty3">
   <input type=text size=45 maxlength=256 name="Ordering_OrderDesc3">
   <input type=text size=maxlength=name="Ordering_OrderQty4">
   <input type=text size=45 maxlength=256 name="Ordering_OrderDesc4">
   
   <strong>BILLING</strong>
   <em>Purchase order # </em>
      <input type=text size=25 maxlength=256 name="Ordering_PONumber">
   <em>Account name </em>
      <input type=text size=25 maxlength=256 name="Ordering_POAccount">
   <strong>SHIPPING</strong>
   <em>  Street address </em>
      <input type=text size=35 maxlength=256 name="Ordering_StreetAddress">
   <em> Address (cont.</em>
      <input type=text size=35 maxlength=256 name="Ordering_Address2">
   <em>City </em>
      <input type=text size=35 maxlength=256 name="Ordering_City">
   <em>  State/Province </em>
      <input type=text size=35 maxlength=256 name="Ordering_State">
   <em> Zip/Postal code </em>
      <input type=text size=12 maxlength=12 name="Ordering_ZipCode">
   <em>         Country </em>
      <input type=text size=25 maxlength=256 name="Ordering_Country">
</pre>
<pre>
   <input type=checkbox name="rush" value="ON">Rush Order!
</pre>
</blockquote>
<p>
   <input type=submit value="Submit Form"
   <input type=reset value="Reset Form"
</p>
</form>
</body>
</html>


           
       
Related examples in the same category
1. Adjusting a CGI Submission Action
2. Button Objects: Submit, Reset, and Button
3. Checking Elements on a Form
4. Variables in Hidden form
5. Creating an Example Form for User Feedback
6. Accessing the Elements of a Form
7. Using the form.elements Array
8. form.reset() and form.submit() Methods
9. The onReset and onSubmit Event Handlers
10.  Passing a Form Object and Form Element to Functions
11.  Last-Minute Checking Before Form Submission
12. A Form for Entering a URL
13. Storing the last value using a Hidden object.
14. Methods and Properties of the Submit Object
15. Methods and Properties of the Reset Object
16. Properties of the Hidden Object
17. Methods and Properties of the Form Object
18. Client-Side JavaScript Objects and HTML Tags That Create Instances of Them
19. Using the document.forms Property
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.