|
|
 |
<%
openconnection()
set rsGallery=server.CreateObject("ADODB.recordset")
sqlstr="select * from tbl_gallery order by intgallery_id DESC"
rsGallery.open sqlstr,objconn,1,3
%>
<% count=0
if not rsGallery.eof then
do while not rsGallery.eof
count = count + 1
%>
')"> " border="0"/>
|
<%if count mod 6 = 0 then%>
|
<%else%>
| |
<%end if
rsGallery.movenext
if rsGallery.eof and (count mod 6) <> 0 then %>
<% end if
loop
else %>
| No Records found |
<% End if
closeconnection()
%>
|
 |
|
|