📄 lianjie.asp
字号:
<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<!--#include file="conn1.asp"-->
<!--#include file="char.asp"-->
<%
dim sql
dim rs
dim title
dim content
set rs=server.createobject("adodb.recordset")
sql="update article set hits=hits+1 where articleID="&request("id")
rs.open sql,conn,1,3
sql="select * from article where articleID="&request("id")
rs.open sql,conn,1,1
if not rs.eof then
name=rs("title")
url=rs("content")
end if
rs.close
%>
<wml>
<head><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
</head>
<card id='card' title='<%=untow(name)%>'>
<onevent type='onenterforward'>
<go href='<%=untow(url)%>'/>
</onevent>
<p align='center'>
<a href='<%=untow(url)%>'>正在链接!</a></p>
</card>
</wml>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -