If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > TEXT data type

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-16-03, 07:49
computologo computologo is offline
Registered User
 
Join Date: Oct 2002
Location: Brazil
Posts: 5
TEXT data type

Hi. I'm using a table with a TEXT field. Through my asp application, I've inserted correcty some data in this table but, by my application, when I try to visualize the fields of this table in a page, the TEXT field doesn't load in my form's textarea. Some ideas? Thanks.
Reply With Quote
  #2 (permalink)  
Old 01-16-03, 09:20
threshar threshar is offline
Registered User
 
Join Date: Jan 2003
Posts: 23
text areas in html are in the format <textarea name=foo>this is text that will appear</textarea>

assuming you go thtat correct, what happens if you just print the text as part of the page - you know - right in the page to ensure you are in fact retriving the data. or perhaps trying to retrieve through dbaccess.
Reply With Quote
  #3 (permalink)  
Old 01-16-03, 10:56
computologo computologo is offline
Registered User
 
Join Date: Oct 2002
Location: Brazil
Posts: 5
Quote:
Originally posted by threshar
text areas in html are in the format <textarea name=foo>this is text that will appear</textarea>

assuming you go thtat correct, what happens if you just print the text as part of the page - you know - right in the page to ensure you are in fact retriving the data. or perhaps trying to retrieve through dbaccess.

I use in my code something like this;

call Query(rsInf, strSQL, database)

if not rsInf.eof then
desText = trim(rsInf("desText"))

...

<textarea name="desText" rows="4" cols="60"><%=desText%></textarea>

The database has a value, but it doesn't appear in the asp page!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On