📄 artshow.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="cook.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
artname=rs("title")
author=rs("author")
source=rs("source")
content=rs("content")
hit=rs("hit")
tjtime=rs("tjtime")
rs.close
set rs=nothing
end if%>
<html>
<head>
<title>:: <%=artname%> - <%=author%> ::</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<LINK href="images/manage.css" type=text/css rel=stylesheet>
</head>
<BODY>
<TABLE cellSpacing=1 cellPadding=10 width="100%" bgColor=#999999
border=0 style="table-layout:fixed">
<TBODY>
<TR bgColor=#ffffff>
<TD colspan="2" align=middle height=30><b><%=artname%></b></TD></TR>
<TR bgColor=#ffffff>
<TD noWrap align=middle width="40%"><font color="#0033CC">◆</font> <font color="#FF6633">作者:</font><%=author%></TD>
<TD noWrap align=middle width="40%"><font color="#0033CC">◆</font> <font color="#FF6633">来源:</font><%=source%></TD></TR>
<TR bgColor=#ffffff>
<TD style="left:0px;width:100%;word-wrap:break-word" colspan="2" valign="top"><%=th(content)%></TD></TR>
<TR bgColor=#ffffff align="center">
<TD width="50%"><font color="#FF6633">浏览次数:</font><%=hit%></TD>
<TD width="50%"><font color="#FF6633">发布日期:</font><%=tjtime%></TD></TR>
<TR bgColor=#ffffff>
<TD colspan="2" align="center"><a href="javascript:window.close()">关 闭</a></TD></TR>
</TBODY>
</TABLE>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -