musicview.asp

来自「功能特点:1、在wap1.0的基础上添加了铃声栏目; 」· ASP 代码 · 共 38 行

ASP
38
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
<!--#include file="conn.asp" -->
<%
id=request.QueryString("id")
if id<>"" then
set rs=server.CreateObject("adodb.recordset")
sql="select * from music where id="&id
rs.open sql,conn,3,3
mcid=rs("id")
mctitle=rs("title")
mcauthor=rs("author")
mcsize=rs("mcsize")
mcurl=rs("mcurl")
mchit=rs("hit")
mctime=rs("tjtime")
rs.close
set rs=nothing
end if
%>
<?xml version="1.0" encoding="utf-8"?>
<wml>
<head>
<meta http-equiv="Cache-Control" content="no-Cache"/>
<meta http-equiv="Cache-Control" content="max-age=0"/>
</head>
<card title="铃声|<%=webtitle%>">
<a href="index.asp"><img src="<%=weblogo%>" width="88" height="31" border="0"/></a><br/>
【<%=mctitle%>】<br/>
<font color="red">歌手:</font><%=mcauthor%><br/>
<font color="red">大小:</font><%=mcsize%><br/>
<font color="red">下载:</font><%=mchit%><br/>
<font color="red">日期:</font><%=mctime%><br/>
<font color="red">地址:</font><a href="musicdown.asp?id=<%=mcid%>">下载</a><br/>
<a href="music.asp">返回手机铃声</a><br/>
<br/><%=copyright%>
</card>
</wml>

⌨️ 快捷键说明

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