form problems using a response.write statement

T

TJ

I am using a form and am filling in one of the fields programatically using
an asp response.write statement. It works properly, with one exception.
Anything that is displayed after a space, is not displayed on the form. For
example the item is named "some object today", only "some" is the only thing
displayed. Does anyone no what causes this or how to fix it?
 
S

Stefan B Rusynko

Create a string variable
strText="some object today"
then use it for the field value as
response.write strText
or
<%=strText%>



|I am using a form and am filling in one of the fields programatically using
| an asp response.write statement. It works properly, with one exception.
| Anything that is displayed after a space, is not displayed on the form. For
| example the item is named "some object today", only "some" is the only thing
| displayed. Does anyone no what causes this or how to fix it?
|
 
Top