Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

repeat region

Status
Not open for further replies.

230173

MIS
Jun 22, 2001
208
SG
Hi,

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.
 
2 methods

Handcode which is pretty nice

or get the horizontal looper extension over at
The hand code would be something like this

<%
i = 0
do while not rs.eof
if i = 0 then
response.write &quot;<tr>&quot;
end if
i = i + 1
response.write &quot;<td align=center>&quot;
%>
<%=rs(&quot;fldDetailTitle&quot;)%>
<%
response.write &quot;</td>&quot;
if i = 15 then
response.write &quot;</tr>&quot;
i = 0
end if

rs.movenext
%>
<%
loop
%> &quot;Never underestimate the power of determination&quot;

Stuart
 
thanks for the reply.

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.
 
Its a page that loads with their tutorial &quot;Never underestimate the power of determination&quot;

Stuart
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top