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?
|
 

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