form input field initial value truncate after space 
Author Message
 form input field initial value truncate after space

To any one who can help me:

In my form input text field, inside a table, if I specify

<td><input type="text" name="T1_name" size=40 value = "My Name"</td>, it
displays this initial value correctly with the space.

But if  I specify:
<%Name_var="My Name"%>
<td><input type="text" name="T1_name" size=40 value=<% Name_var%>></td>
it truncates everything after the space.

How can I preserve the space and use the value of the variable in the
initial value of the text input form.

Thank You in advance for your response.

- Myrtle



Thu, 17 Apr 2003 03:27:45 GMT  
 form input field initial value truncate after space

Two solutions:

1) <td><input type="text" name="T1_name" size=40
    value='<% Name_var%>'></td>

2) <td><input type="text" name="T1_name" size=40
    value=<%Server.HTMLEncode(Name_var)%>></td>

Solution 2) is actually the more robust solution since it encodes all characters that are
significant in HTML syntax.

--
Michael Harris
Microsoft.MVP.Scripting
--

Quote:
> To any one who can help me:

> In my form input text field, inside a table, if I specify

> <td><input type="text" name="T1_name" size=40 value = "My Name"</td>, it
> displays this initial value correctly with the space.

> But if  I specify:
> <%Name_var="My Name"%>
> <td><input type="text" name="T1_name" size=40 value=<% Name_var%>></td>
> it truncates everything after the space.

> How can I preserve the space and use the value of the variable in the
> initial value of the text input form.

> Thank You in advance for your response.

> - Myrtle



Thu, 17 Apr 2003 03:37:26 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. Spaces in Form Input Values

2. Get form input field value before submit?

3. Setting initial value to input file

4. String truncates all but 1st word in Form Input type text box

5. Outlook form and initial value not saving correctly

6. value of memo field gets truncated

7. Trimming spaces (L/R) of a Password Input field

8. Making hidden fields visible based on a form field value

9. Space Space Space Space Space Space Space

10. Space Space Space Space Space Space Space

11. Space Space Space Space Space Space Space

12. Displaying text/input field depending on checkbox value

 

 
Powered by phpBB® Forum Software