I read out the data from the db and print it to the screen.
I use this code to do that for another Text field and it works.
do while NOT rs3.EOF
if rs3("Q7t"
<> "N/A" then
response.write rs3("Q7t"
rs3.MoveNext
loop
For the Memo field, I had to save the dat to a temp variable then print it out. Like this...
do while NOT rs3.EOF
temper = rs3("Q8"
if temper <> "No Response" then
response.write temper
rs3.MoveNext
loop
Anyone know why this is so?
I use this code to do that for another Text field and it works.
do while NOT rs3.EOF
if rs3("Q7t"
response.write rs3("Q7t"
rs3.MoveNext
loop
For the Memo field, I had to save the dat to a temp variable then print it out. Like this...
do while NOT rs3.EOF
temper = rs3("Q8"
if temper <> "No Response" then
response.write temper
rs3.MoveNext
loop
Anyone know why this is so?