

Forms
(These generally require a script on your server)
|
|
|
|
Define Form <form action="url"method=get></form>
<form action="url" method=post></form> | N2.0 | File Upload <form enctype="multipart/form-data></form>Input Field <input type="text">
<input type="password">
<input type="checkbox">
<input type="radio">
<input type="image">
<input type="hidden">
<input type="submit">
<input type="reset">Field Name <input name="***">Field Value <input value="***">Checked? (checkboxes and radio boxes) <input checked>Field Size (in characters) <input size=?>Max Length (in characters) <input maxlength=?>Selection List <select></select>Name of List <select name="***"></select>Number of Options <select size=?></select>Multiple Choice (can select more than one) <select multiple>Option (items that can be selected) <option>Default Option <option selected>Input Box Size <textarea rows=? cols=?></textarea>Name of Box <text area name="***"></textarea> |
| N2.0 | Wrap Text <text area wrap=off></textarea>
<text area wrap=virtual></textarea>
<text area wrap=physical></textarea> |