上一张下一张功能代码出错
<%imgid=trim(request.QueryString("id"))
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from chuangzao where imgid="&imgid,conn,1,1
if rs.eof and rs.bof then
response.write"<script>alert(""这已经是最后一张了!"");location.href=""creativity.asp"";</script>"
end if
%>
<table width="100%">
<tr><td height="52"><!--#include file="include/wordhead2.asp"--></td></tr>
</table>
<table width="100%" height="76%" align="left" bgcolor="#1E1E1E" style="BORDER-bottom:#A0A0A0 1px solid;BORDER-top:#A0A0A0 1px solid;BORDER-left:#A0A0A0 1px solid; BORDER-right:#A0A0A0 1px solid;" >
<tr>
<td valign="top" align="center">
<br> <br>
<table>
<tr>
<td align="center"><blockquote>
<p><img src="<%=rs("img")%>" height="500" />
</p>
</blockquote> <p> <font color="#FFFFFF"><%=rs("name")%><br>
说明:<%=rs("beizhi")%></font></p></td>
</tr>
<tr><td>
<a href="creativity2.asp?id=<%=rs("imgid")-1%>"><font color="#FFFFFF">上一张</font></a>
<a href="creativity2.asp?id=<%=rs("imgid")+1%>"><font color="#FFFFFF">下一张</font></a>
</td></tr>
</table>
</td>
</tr>
</table>
<%rs.close
set rs=nothing%>
这个是要实现可以上一张下一张的功能,现在做好了,只是有些问题,比如说我点进去的图片 ID是10 当我点击下一张的时候,ID为11 然后我在ID11哪里点上一张的时候,可以显示ID10的图片,但是在ID10哪里再点上一张,就无法显示。