dg.asp
来自「全站生成htm静态页面」· ASP 代码 · 共 49 行
ASP
49 行
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>音乐酒吧点歌台</title>
<style>
<!--
body,td { font-size: 12px; font-family: 宋体; color: #FFFFFF }
a { color: #FF0000 }
a.b { color: #FFFFFF; text-decoration:none; font-weight:bold }
-->
</style>
<base target="_blank">
</head>
<body leftMargin=0 topMargin=0 marginheight="0" marginwidth="0">
<table border="0" width="760" cellspacing="0" cellpadding="4">
<tr><td width="60" align="center" bgcolor="#0099CC"><a href="/song/" class="b">点歌台</a>:</td>
<td>
<marquee onmouseover="this.stop()" onmouseout="this.start()"><span class="f14" style="color:ffffff;filter:glow(color=#ff0000,strength=5);height:1">最新十首点歌:</span>
<%
set rs=server.createobject("adodb.recordset")
sql="select title,id,myname,yourname from basic order by id desc"
rs.open sql,conn,1,1
For i = 1 to 10
if rs.EOF then Exit For
title=rs("title")
id=rs("id")
myname=rs("myname")
yourname=rs("yourname")
%>
<a href="y98cn.asp?id=<%=id%>"><font color="#0000FF"><%=myname%></font><font color="#000000"> 送给</font>
<font color="#0000FF"><%=yourname%></font><font color="#000000"> 一首</font> <font color="#FF0000">《<%=title%>》</font></a>
<%
rs.movenext
next
rs.close
conn.close
set conn=nothing
set rs=nothing
%>
</marquee>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?