M
MikeR
Hello -
I pass an item to an asp page as a query string. The value has a space in it. On the
receiving page, the value displays fine just as a variable, but if I use it to pre-fill an
input box, only the first word displays.
Ex:
The URL- http://myserver.com/test.asp?Item=Blue Vase
The page
<http>
<body>
<form name="form1" method="POST" action="mailto:[email protected]">
<p>Product: <%=request.querystring("item")%> <===shows Blue Vase
<input name="prod" type=text size="50" value=<%=request.querystring("item")%>> <== shows Blue
<input type="submit" name="Submit" value="Send">
</p>
</form>
</body>
</http>
Thanks,
Mickey
I pass an item to an asp page as a query string. The value has a space in it. On the
receiving page, the value displays fine just as a variable, but if I use it to pre-fill an
input box, only the first word displays.
Ex:
The URL- http://myserver.com/test.asp?Item=Blue Vase
The page
<http>
<body>
<form name="form1" method="POST" action="mailto:[email protected]">
<p>Product: <%=request.querystring("item")%> <===shows Blue Vase
<input name="prod" type=text size="50" value=<%=request.querystring("item")%>> <== shows Blue
<input type="submit" name="Submit" value="Send">
</p>
</form>
</body>
</http>
Thanks,
Mickey