I have a textbox in html that retrieves an address (number and street). It gets passed in the querystring ok, but when I try to write it to a variable:
dim address
address = request.querystring("txtAddress"![Wink ;) ;)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
response.write address
it only brings back the number.
How do I convince it not to stop at the space?
Thanks.
dim address
address = request.querystring("txtAddress"
response.write address
it only brings back the number.
How do I convince it not to stop at the space?
Thanks.