rockdoc
02-20-2008, 12:03 AM
To save time inputting data in to a web form, is it possible to copy and paste alphanumeric data (e.g. from excel) into a text area and have that auto populate the individual text fields?
Can the order of items in the text area be linked to the order of fields in the form?
Example
<form>
<input type="text" name="Subject">
<input type="text" name="Task">
<input type="text" name="Weight">
<TEXTAREA NAME="Auto Populate">
Math
Algebra Test
25%
</TEXTAREA>
<input type="submit" value="Autopopulate">
</form>
Can the order of items in the text area be linked to the order of fields in the form?
Example
<form>
<input type="text" name="Subject">
<input type="text" name="Task">
<input type="text" name="Weight">
<TEXTAREA NAME="Auto Populate">
Math
Algebra Test
25%
</TEXTAREA>
<input type="submit" value="Autopopulate">
</form>