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

📄 listmsn.asp

📁 漂亮的欧美旅游模板
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="chk.asp"-->
<!--#include file="db_conn.asp"-->
<!--#include file="../my_libs/my_request.asp"-->
<!--#include file="../my_libs/my_lib.asp"-->
<%
dim id,rs,sql,arr(3),i
id=my_request("id",1)
if id="" then
wnourl("参数错误")
else
sql="select zm_uzname,zm_title,zm_msntime,zm_content from ssort_msn order by zm_msntime desc"
set rs=conn.execute (sql)
for i=0 to 3
arr(i)=rs(i)
next
rs.close
set rs=nothing
conn.execute ("update ssort_msn set zm_isnew=1 where id="&id)
conn.close
set conn=nothing
end if
%>
<html>

<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
<link rel="stylesheet" type="text/css" href="style_admin.css" />
</head>

<body>

<table width="100%">
	<tr>
		<td width="958" align="right" colspan="4" class="top_td">
		<p align="left">详细信息查看</td>
	</tr>
	<tr>
		<td width="190" align="right" class="left_td">姓名:</td>
		<td width="288"><%=arr(0)%></td>
		<td width="240" class="left_td">
		<p align="right">时间:</td>
		<td width="240"><%=arr(2)%></td>
	</tr>
	<tr>
		<td width="190" align="right" class="left_td">主题:</td>
		<td colspan="3" width="780"><%=arr(1)%></td>
	</tr>
	<tr>
		<td width="190" align="right" class="left_td">内容:</td>
		<td colspan="3" width="780"><%=arr(3)%></td>
	</tr>
	<tr>
		<td colspan="4" align=center>
		<input type="button" value="返回上页" name="B3" onclick="window.history.go(-1);">
		<input type="button" value="删除" name="B4" onclick="window.location='delmsn.asp?id=<%=id%>'"></td>
	</tr>
</table>

</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -