form <input .... value="xxxx yyyy" .... >

Jim Ford

New Member
How do I pre-fill a text box form element with a variable that has a space imbeded in it? My code follows:

assign contact-name = "Bill Smith".

{&OUT} "
<tr>
<td><input type=text
name=name
size=30
value=" contact-name ">
</td>
</tr>".

When the page is displayed the text box is only filled with "Bill".

Jim
 
Back
Top