设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 61|回复: 7
打印 上一主题 下一主题

如何让他自动排列40个最新的舞曲.(请教)

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-19 07:00:59 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
http://www.djwin.com/djtest.asp
这是个测试页面,未发布的.
求助!
我的这个页面,最新更新那一栏是两个一样的内容.
如何将他们变成不是一样的? 就是说让他们自动排列40个最新的舞曲来。

我将代码贴在下面的:
2#
发表于 2010-1-19 07:01:03 | 只看该作者
<TR>
<TD class=bkdown width=10 bgColor=#333333> </TD>
<TD class=bkdown width=460 bgColor=#333333>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD class=kg01 colspan="3"> </TD></TR>
<%
i=0
set rs=conn.execute("SELECT top 20 * FROM musiclist order by id desc")
if not Rs.eof then
do while not rs.eof
i=i+1
%>
<form name="form2" onsubmit="javascript:return lbsong();" target="Listen" action="playsong.asp">
<TR>
<td width="1%" align=center height="5">
<input type="checkbox" name="songid" value="<%=rs(0)%>" style="background-color: #333333">
</td>
<TD class=zt00 width="40%">
<%=i%>·<a href="javascript:window_open('ShowMusic.asp?id=<%=rs("id")%>','ShowMusic','width=366,height=120')" title='<%=rs("musicname")%>'><%=rs("musicname")%><%=left(rs("musicname"),0)%><% if len(rs("musicname"))>12 then Response.Write "" %></a>
</TD>
<TD class=zt00 width="2%">
<a href="http://tl.a8.com/search.asp?uid=1289&s_type=1&ad=41&keyword=<%=rs("musicname")%>" target="_blank"><img src=images/ring.gif border=0 alt=下载本曲手机铃声 style=cursor:hand></a></TD>
<td width="1%" align=center height="5">
<input type="checkbox" name="songid" value="<%=rs(0)%>" style="background-color: #333333">
</td>
<TD class=zt00 width="40%">
<%=i%>·<a href="javascript:window_open('ShowMusic.asp?id=<%=rs("id")%>','ShowMusic','width=366,height=120')" title='<%=rs("musicname")%>'><%=rs("musicname")%><%=left(rs("musicname"),0)%><% if len(rs("musicname"))>12 then Response.Write "" %></a>
</TD>
<TD class=zt00 width="2%">
<a href="http://tl.a8.com/search.asp?uid=1289&s_type=1&ad=41&keyword=<%=rs("musicname")%>" target="_blank"><img src=images/ring.gif border=0 alt=下载本曲手机铃声 style=cursor:hand></a></TD>
</TR>
<%
rs.movenext
loop
else
response.write "尚无收录"
end if
rs.close
%>
<TR>
<TD class=kg01 colspan="3"></TD></TR>
<tr>
<td colspan=8 align=center>
<input type="button" value="全 选" onClick="CheckAll(this.form)" title="选择显示的所有歌曲" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">&nbsp;&nbsp;&nbsp;&nbsp;
<input type="button" value="反 选" onClick="CheckOthers(this.form)" title="反向选择歌曲" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="连 播" title="请先选择你想听的歌曲后再点击连播" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG height=9 src="images/more.gif" width=29><a href="http://www.djwin.com/speciallist.asp" target="_blank" alt=更多专辑>更多专辑</a></td>
</tr>
</form>
</TBODY></TABLE></TD></TR>
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-19 07:01:07 | 只看该作者
<form name="form2" onsubmit="javascript:return lbsong();" target="Listen" action="playsong.asp">
<TR>
<%
i=0
set rs=conn.execute("SELECT top 40 * FROM musiclist order by id desc")
if not Rs.eof then
do while not rs.eof
i=i+1
%>
<td width="1%" align=center height="5">
<input type="checkbox" name="songid" value="<%=rs(0)%>" style="background-color: #333333">
</td>
<TD class=zt00 width="40%">
<%=i%>·<a href="javascript:window_open('ShowMusic.asp?id=<%=rs("id")%>','ShowMusic','width=366,height=120')" title='<%=rs("musicname")%>'><%=rs("musicname")%><%=left(rs("musicname"),0)%><% if len(rs("musicname"))>12 then Response.Write "" %></a>
</TD>
<TD class=zt00 width="2%">
<a href="http://tl.a8.com/search.asp?uid=1289&s_type=1&ad=41&keyword=<%=rs("musicname")%>" target="_blank"><img src="images/ring.gif" border=0 alt="下载本曲手机铃声" style="cursor:hand"></a></TD>
<%
if i mod 2=0 then
Response.Write("</TR><TR>")
rs.movenext
loop
else
response.write "尚无收录"
end if
rs.close
%>
</TR>
<tr>
<td colspan=8 align=center>
<input type="button" value="全 选" onClick="CheckAll(this.form)" title="选择显示的所有歌曲" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">&nbsp;&nbsp;&nbsp;&nbsp;
<input type="button" value="反 选" onClick="CheckOthers(this.form)" title="反向选择歌曲" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="连 播" title="请先选择你想听的歌曲后再点击连播" style="border-style:solid; border-width:0px; padding:0; font-size:9pt; color:#000000; background-color:#5D5D5D">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<IMG height=9 src="images/more.gif" width=29><a href="http://www.djwin.com/speciallist.asp" target="_blank" alt=更多专辑>更多专辑</a></td>
</tr>
</form>
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-19 07:01:11 | 只看该作者
今天终于看到回复了.但是不行,那些代码放近去就出现了HTTO 500内部错误.麻烦你再帮忙看看.谢谢!
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-19 07:01:15 | 只看该作者
你把错误提示发上来。
回复 支持 反对

使用道具 举报

6#
发表于 2010-1-19 07:01:19 | 只看该作者
无法显示网页
您要访问的网页有问题,无法显示。



请尝试以下操作:
打开 www.djwin.com 主页,然后查找指向您感兴趣信息的链接。 单击刷新按钮,或以后再试。
单击搜索,寻找 Internet 上的信息。 也可查看相关站点列表。

HTTP 500 - 内部服务器错误
Internet Explorer
回复 支持 反对

使用道具 举报

7#
发表于 2010-1-19 07:01:23 | 只看该作者
怎么没有人帮忙了啊.谢谢了!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 17:47 , Processed in 0.108017 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表