favorite.asp
来自「asp制作的音乐系统,初步功能实现了用户登录」· ASP 代码 · 共 45 行
ASP
45 行
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr><td width="16%" align="center"><td width="16%" align="center"><td width="16%" align="center"><td width="16%" align="center"><td width="16%" align="center"><td width="16%" align="center"></tr>
<%
Server.ScriptTimeOut=500
set conn=server.createobject("ADODB.Connection")
filepath=server.mappath("db.mdb")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & filepath
Set RS = SERVER.CreateObject("ADODB.Recordset")
strSQL = "SELECT * FROM favorite"
RS.Open strSQL,conn,1,1
Do while not RS.EOF
%>
<tr>
<%
For i=1 to 6
%>
<td width="16%" height="100" align="center">
<a href="playlist.asp?user=<%=RS("user")%>"><img border="0" src="images/folder.jpg"><br><%=RS("user")%></a></td>
<%
RS.MoveNext
If RS.EOF then
RS.MoveLast
Exit For
End If
Next
%>
</tr>
<%
RS.MoveNext
If RS.EOF then
RS.MoveLast
Exit Do
Else
RS.MovePrevious
End If
Loop
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?