📄 txt.asp
字号:
<%
dim toppath,dbpath
toppath="../"
dbpath="../"
%>
<!--#include file="../db_conn.asp" -->
<!--#include file="../my_lib/my_request.asp" -->
<%
id=my_request("id",0)
if id="" or isnull(id) or IsNumeric(id)=False then
response.write("<script>alert(""参数错误!"");location.href=""../index.asp"";</script>")
response.end
else
sql="select info_title,info_content from info_set where id="&id
set rs=conn.execute (sql)
info_title=rs(0)
info_content=rs(1)
rs.close
set rs=nothing
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/main.css" rel="stylesheet" type="text/css">
<title><%=info_title%></title>
</head>
<body topmargin="1">
<!--#include file="../top.asp"-->
<div align="center">
<table border="0" width="760" id="table3" cellspacing="0" cellpadding="0">
<tr>
<td height="25">当前位置:<a href="../index.asp">首页</a>>>><a href=help.asp>帮助中心</a>>>><%=info_title%></td>
</tr>
</table>
<table border="0" width="760" cellspacing="0" cellpadding="0" style="border: 1px solid #C2C2C2; padding: 1px">
<tr>
<td height="25" align=center bgcolor="#CCCCCC"><%=info_title%></td>
</tr>
<tr>
<td><%=info_content%></td>
</tr>
<tr>
<td align=right><a href="javascript:window.close()">关闭窗口</a></td>
</tr>
</table>
</div>
<!--#include file="../end.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -