artview.asp
来自「功能特点:1、在wap1.0的基础上添加了铃声栏目; 」· ASP 代码 · 共 40 行
ASP
40 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Response.ContentType = "text/vnd.wap.wml; charset=utf-8"%>
<!--#include file="conn.asp" -->
<!--#include file="function.asp"-->
<%
id=request.QueryString("id")
if id<>"" then
set rs=server.CreateObject("adodb.recordset")
sql="select * from art where id="&id
rs.open sql,conn,3,3
rs("hit")=rs("hit")+1
rs.update
artname=rs("title")
author=rs("author")
source=rs("source")
content=rs("content")
arthit=rs("hit")
arttime=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/>
【<%=artname%>】<br/>
<font color="red">作者:</font><%=author%><br/>
<font color="red">来源:</font><%=source%><br/>
<%=th(content)%><br/>
<font color="red">浏览:</font><%=arthit%><br/>
<font color="red">日期:</font><%=arttime%><br/>
<a href="art.asp">返回网文日志</a><br/>
<br/><%=copyright%>
</card>
</wml>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?