| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 808 人关注过本帖
标题:我asp分页翻页显示同样的信息 求救
只看楼主 加入收藏
luowen882000
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2005-12-20
收藏
得分:0 

这个是显示歌曲列表的函数
也就是显示数据库记录的刚没发完整的

<% sub musiclaist() %>

<center>
<table width="77%" border="0" cellSpacing=0 cellPadding=0 bgcolor="#b4deef8" >

<tr>
<td width="19%" height="16" align="left" valign="middle"><font color="#000000" STYLE="Text-Decoration:none" size="2" face="??ì?">您现在的位置是&gt;&gt;</font></td>
<td width="10%" align="left" valign="middle"><a href="index1.asp"><font STYLE="Text-Decoration:none" size="2" face="??ì?">音网首页</font></a></td>

<%
if request("nclassid")<>"" then
set rs=server.CreateObject("adodb.recordset")
sql="select * from nclass where nclassid="&request("nclassid")
rs.open sql,conn,1,3
nclass=rs("nclass")
%>
<td width="71%" align="left" valign="middle">&gt;&gt;<a href="musiclist.asp?nclassid=<%=request("nclassid")%>"><font style="Text-Decoration:none" size="2" face="??ì?"><%=nclass%></font></a></td>

<%
end if
%>

</tr>
</table></center>

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>

<%
if request("nclassid")<> "" then
sql="select * from musiclist where nclassid="&request("nclassid")
set rs=server.CreateObject("adodb.recordset")

rs.open sql,conn,1,1
if rs.eof then
response.Write"<script>alert('未收录歌曲。');window.location.href='index.asp';</script>"
else
%>
</center>

<center>
<table width="77%" border="0" style=" BORDER-top: #000000 1px solid">
<tr>
<td width="7%" align="center" valign="middle" backround= "/image/ll.gif">
<font size="2" face="宋体">选择</font></td>
<td width="42%" background="/image/ll.gif" ><font size="2" face="宋体">歌曲</font></td>
<td width="29%" background="/image/ll.gif" ><font size="2" face="宋体">歌手</font></td>
<td width="22%" background="/image/ll.gif" ><font size="2" face="宋体">试听</font></td>
</tr>
<%
set trs=server.CreateObject("adodb.recordset")
i=0
do while not rs.eof
i=i+1
tsql="select * from musiclist where nclassid="+cstr(rs("nclassid"))
trs.open tsql,conn,1,1
totalmnumber=trs.recordcount
trs.close
%>
<tr>
<td align="right" valign="middle" bgColor=#e7e3e7><font size="2" face="宋体">
<%=i%>.</font>
</td>
<td style="BORDER-RIGHT : #000000 1px solid ;BORDER-TOP : #000000 1px solid">
<a href="#" onclick="MM_openBrWindow('paly.asp?id=<%=rs("id")%>','','width=400,height=150')">
<font color="#000000" size="2" face="宋体" STYLE="Text-Decoration:none">
<%=rs("musicname")%></font>
</a>
</td>
<td style="BORDER-RIGHT : #000000 1px solid ;BORDER-TOP : #000000 1px solid">
<a href="musiclist.asp?nclassid=<%=request("nclassid")%>">
<font color="#000000" size="2" face="宋体" STYLE="Text-Decoration:none">
<%=rs("singer")%></font>
</a>
</td>

<td style="BORDER-ROGHT : #000000 1px solid;BORDER-TOP : #000000 1px solid">
<%if rs("wma")<>"" then%>
<a href="#" onclick="MM_openBrWindow('paly.asp?id=<%=rs("id")%>','','width=400,height=150')">
<img src="image/21.gif" width="33" height="13" border="0">
</a>
<%else
response.Write"<script>alert('未收录歌曲。');window.location.href='reg1.asp';</script>"
end if%></td>

</tr>
<%
if i>=maxperpage then exit do
rs.movenext
loop
end if
rs.close
else
response.Write"<script>alert('未收录歌曲。');window.location.href='index.asp';</script>"
end if

%>
</table>
</center>
<% end sub%>

2005-12-30 23:27
快速回复:我asp分页翻页显示同样的信息 求救
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024084 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved