I've got a reservation form that is pretty much working properly, but has a quirk. I've got a couple of lines like this:
<p>Name of party: <input type="text" name="PassName" size="50" value = <% = request.form("Passname") %> > * </p>
The purpose (forgive me if I'm stating the obvious) is to carry forward the user's input if validation fails and they come back. It's working to a degree, but the quirk is that it will truncate the user input at the first space. In other words if I type
blah blah
and something causes the form to fail validation (they forgot to enter something else), I'll end up with
blah
in that field. I can type something longer, and it will still drop everything after the first space ("blahblahblah blah" will come back as "blahblahblah"). If the form submits correctly, the user input will go into the table correctly, so my assumption is that the problem is with the "value=..." bit.
Any ideas on why this is happening?
TIA