whitespace in html form

windows

Guest
I am working with an ASP web page, wriiten in vbscript.<br />
The page has an HTML form.<br />
The page uses an ADO connection to get data from a database.<br />
The data is displayed in the HTML form.<br />
<br />
Everything is working, except:<br />
One field in the database has two words. It is "Windows 95." The HTML form only displays "Windows."<br />
It drops the word after the whitespace. <br />
<br />
How can I make an HTML form (or the browser) display the whole field?<br />
I really don't want to change this field in all the records.<br />
<br />
Thanks for any help!<br />
Doug<!--content-->Thanks,<br />
I am getting the value from an ADO database.<br />
Found that view - source shows correct data. I guess the browser knocks it out?<br />
<br />
Here is the data sent to the broswer:<br />
OS: <input type=text name=SomeField value = <% = rsGuestbook("FieldName") %>> <br><br />
<br />
Here is what I see in view-source:<br />
OS: <input type=text name=SomeField value = Windows 95> <br><br />
<br />
Can I add quotes to the original line somehow?<br />
Thanks,<br />
Doug<!--content-->Thank you!!<br />
Your are a genius!<!--content-->
 
Back
Top