
Passing a variable using hidden method.
I have the following problem.
I am trying to pass a string "United States", to a next page, using a hidden
variable in a post method form. After I pass it, I can only see the first
word "United". The second word is missing.
How can I use the hidden post method to pass the whole string with a space
inside?
(I am using
VBScript for ASP)
Thank you very much for your advice.
<%
strA = "United States"
%>
<form .... .... ... method = post>
< input type="hidden" name="A" value=<%=strA%> >
</form>