If I try to fill in a text field from the previous page with a POST command, it only transfers the text before the first space. Example:
<input type="text" name="Name"> <!is on first page
<input type="text" name="T1" value=<%=Request.form("Name"%> is on 2nd page.
If I type "Testing this thing" into the first box, "Testing" is the only thing that gets transferred to the second page. Any ideas?
<input type="text" name="Name"> <!is on first page
<input type="text" name="T1" value=<%=Request.form("Name"%> is on 2nd page.
If I type "Testing this thing" into the first box, "Testing" is the only thing that gets transferred to the second page. Any ideas?