Form2 below is where return data from a database is pasted and
that data will be used to fill form1 (above) when the "DoIt" button
is clicked. This program assumes all form elements have a name beginning
with a "Q" and the server sends back responses in the following format:
QItem1: theAnswer. In short, set up your Perl or ColdFusion or asp or jsp (or
whatever scripts interact with the database) so they send results back with
each form item's name (beginning with a "Q") followed by a colon and
ONE space
and then the answer. Each item response should be also be returned so their
is only one response per line (and no blank lines),
such as:
QItem1: theResponse
QItem2: theResponse
...
(have no blank lines at the top or bottom of the pasted material)