⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 txt.asp

📁 购物系统时尚版.强大的后台文章编辑器的功能
💻 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>&gt;&gt;&gt;<a href=help.asp>帮助中心</a>&gt;&gt;&gt;<%=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 + -