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!