I'm trying to pass a value in the input as a hidden type. The value has a space in it like "Dallas TX"
<input type="hidden" value=<%=vRegion%> name="Region">
When I pick it up with request.form only "Dallas" is found. I've tried the following in the input
value=<%="vRegion"%>
value=<%=[vRegion]%>
value=<%=(vRegion)%>
value=<%='vRegion'%>
value=<%='" & vRegion & "'%>
any ideas on how to pick up both works "Dallas TX"?
<input type="hidden" value=<%=vRegion%> name="Region">
When I pick it up with request.form only "Dallas" is found. I've tried the following in the input
value=<%="vRegion"%>
value=<%=[vRegion]%>
value=<%=(vRegion)%>
value=<%='vRegion'%>
value=<%='" & vRegion & "'%>
any ideas on how to pick up both works "Dallas TX"?