ASP 图片横向排列问题 / 带翻页
这是图片横向排列代码.现在全部都是横着排,我想让他一行5个.然后自动换到第二行,一共4行这个代码包含翻页代码的.哪为高手帮忙编辑一下而不影响翻页.如有方法又说不清的加QQ...
这是图片横向排列代码.现在全部都是横着排,
我想让他一行5个. 然后自动换到第二行, 一共4行
这个代码包含翻页代码的.
哪为高手帮忙编辑一下而不影响翻页.
如有方法又说不清的加QQ 124422949 注明: 图片排列
============================================================
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
============================================================ 展开
我想让他一行5个. 然后自动换到第二行, 一共4行
这个代码包含翻页代码的.
哪为高手帮忙编辑一下而不影响翻页.
如有方法又说不清的加QQ 124422949 注明: 图片排列
============================================================
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
= 查看代码地址 : http://www.77db.com/db/qt/code001.htm =
============================================================ 展开
1个回答
展开全部
<table width="580" height="99" border="0" cellpadding="0" cellspacing="0">
<tr>
<%
sql="select * from cp where xx='0' order by id desc"
set M=server.createobject("adodb.recordset")
M.open sql,conn,1,1
mypage=request("whichpage")
if mypage="" then
mypage=1
else
mypage=cint(mypage)
end if
mypagesize=request("pagesize")
if mypagesize="" then
mypagesize=20
end if
M.movefirst
M.pagesize=mypagesize
maxcount=cint(M.pagecount)
M.absolutepage=mypage
how=1
y=M.pagecount
d=M.recordcount
%>
<%
a=a+1
do while not M.eof and how <=M.pagesize
%>
<td><table width="135" height="190" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EAEAEA">
<tr>
<td height="172" bgcolor="#FDF4C1"><div align="center"><a href="productxx.asp?id=<%=M("id")%>"><img src="<%=M("pic")%>" width="112" height="145" border="0"></a></div></td>
</tr>
<tr>
<td height="16" bgcolor="#FEE39C"><div align="center"><a href="productxx.asp?id=<%=M("id")%>"><%=M("sm")%></a></div></td>
</tr>
</table>
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table></td>
<%
if a mod 5=0 then
response.Write"<tr></tr>"
end if
M.movenext
how=how+1
a=a+1
loop
%>
</tr>
</table>
<table width="580" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><span style="font-family: "宋体"">
<%
if mypage<>1 then
response.write"<a href=product.asp> [第一页] </a>"
response.write"<a href=product.asp?whichpage="&(mypage-1)&"> [上一页] </a>"
end if
if mypage<>y then
response.write"<a href=product.asp?whichpage="&(mypage+1)&"> [下一页] </a>"
response.write"<a href=product.asp?whichpage="&y&"> [最后一页] </a>"
end if
%>
</span> 当前为<span class="STYLE2"><%=mypage%></span>页 共有<span class="STYLE2"><%=maxcount%></span>页 共有<span class="STYLE2"><%=d%></span>个产品</div></td>
</tr>
</table>
不懂就发信息我!
<tr>
<%
sql="select * from cp where xx='0' order by id desc"
set M=server.createobject("adodb.recordset")
M.open sql,conn,1,1
mypage=request("whichpage")
if mypage="" then
mypage=1
else
mypage=cint(mypage)
end if
mypagesize=request("pagesize")
if mypagesize="" then
mypagesize=20
end if
M.movefirst
M.pagesize=mypagesize
maxcount=cint(M.pagecount)
M.absolutepage=mypage
how=1
y=M.pagecount
d=M.recordcount
%>
<%
a=a+1
do while not M.eof and how <=M.pagesize
%>
<td><table width="135" height="190" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EAEAEA">
<tr>
<td height="172" bgcolor="#FDF4C1"><div align="center"><a href="productxx.asp?id=<%=M("id")%>"><img src="<%=M("pic")%>" width="112" height="145" border="0"></a></div></td>
</tr>
<tr>
<td height="16" bgcolor="#FEE39C"><div align="center"><a href="productxx.asp?id=<%=M("id")%>"><%=M("sm")%></a></div></td>
</tr>
</table>
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table></td>
<%
if a mod 5=0 then
response.Write"<tr></tr>"
end if
M.movenext
how=how+1
a=a+1
loop
%>
</tr>
</table>
<table width="580" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><span style="font-family: "宋体"">
<%
if mypage<>1 then
response.write"<a href=product.asp> [第一页] </a>"
response.write"<a href=product.asp?whichpage="&(mypage-1)&"> [上一页] </a>"
end if
if mypage<>y then
response.write"<a href=product.asp?whichpage="&(mypage+1)&"> [下一页] </a>"
response.write"<a href=product.asp?whichpage="&y&"> [最后一页] </a>"
end if
%>
</span> 当前为<span class="STYLE2"><%=mypage%></span>页 共有<span class="STYLE2"><%=maxcount%></span>页 共有<span class="STYLE2"><%=d%></span>个产品</div></td>
</tr>
</table>
不懂就发信息我!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询