how to display multiple values per row

E

eddie wang

The following shows one value per row. How to display multiple values
with a space seperator per row? Thanks.


<td wrap width="371">Fields:</td>
<%
if not rs.EOF then
do while not rs.EOF
%>
<td width="248"><%=rs("FIELD_NAME")%></td>
</tr>
<tr>
<td wrap width="371"></td>
<%
rs.MoveNext
loop
else
%>
<td width="248">NA</td></tr>
 
R

Roger

eddie wang said:
The following shows one value per row. How to display multiple values
with a space seperator per row? Thanks.


<td wrap width="371">Fields:</td>
<%
if not rs.EOF then
do while not rs.EOF
%>
<td width="248"><%=rs("FIELD_NAME")%></td>
</tr>
<tr>
<td wrap width="371"></td>
<%
rs.MoveNext
loop
else
%>
<td width="248">NA</td></tr>

<td wrap width="371">Fields:</td>
<%
if not rs.EOF then
do while not rs.EOF
%>
<td width="248"><%=rs("FIELD_NAME")%></td>

<td wrap width="371"></td>
<%
rs.MoveNext
loop
else
%>
<td width="248">NA</td></tr>
 

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

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top