From http://www.w3schools.com (Copyright Refsnes Data)

XForms Example

« Previous Next Chapter »

XForms Example

You can test XForms with Internet Explorer (XForms will not work in IE prior version 5).

Just click on the "Try it Yourself" button under the example.

Example

<xforms>

<model>
<instance>
<person>
<fname/>
<lname/>
</person>
</instance>
<submission id="form1" method="get"
action="submit.asp"/>
</model>

<input ref="fname">
<label>First Name</label></input><br />

<input ref="lname">
<label>Last Name</label></input><br /><br />

<submit submission="form1">
<label>Submit</label></submit>

</xforms>

Try it yourself »

« Previous Next Chapter »

From http://www.w3schools.com (Copyright Refsnes Data)