Date:  12/01/2005 04:19:03 PM Msg ID:  002764
From:  FoxWeb Support Thread:  002763
Subject:  Re: spacing in variable
All HTML attributes must be enclosed in quotes.  This is especially important in cases where their values may contain spaces.  Here's the correct code:
 
<input type="hidden" name="M121314" value="<%=Mv3%>">

FoxWeb Support Team
support@foxweb.com email

Sent by Colin on 12/01/2005 02:38:31 AM:
Hi,
 
I am trying to pass a variable to another fwx.
 
eg. the value inside the variable is
 
field name is Mv3
value is       ABC 123
 
Note that this is a single variable and not 2 variables and there is a single space between ABC and 123
 
before putting it into the below statement, when I do a response.write the variable, it shows the correct value ie. ABC 123
 
But once I added the below,
 
<input type="hidden" name="M121314" value=<%=Mv3%>>
the value inside the variable M121314 shows ABC
the value after the spacing is not shown.
 
Please help.
 
Regards