jasonhuibers
Programmer
I have 10 records in database and I want to populate the textarea box with 1 record after each other?
How can I do this?
How can I do this?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%cSQL = "SELECT TOP 10 content FROM chat"
rs.open cSQL, conn
do while not rs.eof
msg = msg & rs("content") & vbCrLf
rs.movenext
loop
rs.close%>
<textarea>
response.write msg
</textarea>