⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index1.asp

📁 结合了某度和AH的个人主页 功能比较完整
💻 ASP
字号:
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from music where id="&request("id")
rs.open sql,conn,1,3
if rs.eof and rs.bof then   
response.write"地址错误" 
response.end
end if
js=rs("count")
js=js+1
rs("count")=js
rs.update
url=rs("url")
RTrim(url)//滤除url后面空格
aurl=right(url, 2)//取url后面两个字符
if aurl<>"ra" and aurl<>"rm" and aurl<>"am" and aurl<>"vb" then
Response.Redirect "media/index.asp?url="&url&""
else
Response.Redirect "real/index.asp?url="&url&""
end if
rs.close
set rs=nothing
%> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -