Table - Adding Item To Text Box

E

Earl Partridge

Frontpage 2000, XP

When I add an item that contains a space to a table, everything beyond the space
is dropped. In the example below, only the street number appears, not the street name.
I do a response.write and it is complete.

The entry is into a text box.

Could it be the text box problem?
<td><input type="text" name="Street" size="30" value=<%=session("Street")%>></td>

Earl
 
R

Ronx

Try this:

<td><input type="text" name="Street" size="30"
value="<%=session("Street")%>"></td>

Without the extra quote marks, anything after the space will be treated as
attributes for the text box, not as part of the value attribute.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top