Is it possible to show 30 records in two vertical rows of 15 records? I work with dreamweaver MX and a MS access database. I can seem to get it. I always get 1 vertical row of 30.
<%
i = 0
do while not rs.eof
if i = 0 then
response.write "<tr>"
end if
i = i + 1
response.write "<td align=center>"
%>
<%=rs("fldDetailTitle"%>
<%
response.write "</td>"
if i = 15 then
response.write "</tr>"
i = 0
end if
rs.movenext
%>
<%
loop
%> "Never underestimate the power of determination"
I've noticed that if I use the extension the recordset navigation bar doesn't work.
for example if I make 2 rows of 15 records and I click the next button I don't get anything to see but the recordset navigation bar.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.