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

📄 ad_ly_show.asp

📁 信息管理系统!很简单的课程设计!类似于城市信息交换的网站!
💻 ASP
字号:
<%
if session("admin_login")<>true then
	response.Write("<html><link href=../style.css rel=stylesheet type=text/css><body><table height=100% width=100% align=center valign=middle><tr><td align=center valign=center><p align=center>您没有登录或者已经超时!!请点击下面的链接,进入登录界面!!</p><p align=center>--&gt;&gt; <a href=../login/login.asp>登录</a> &lt;&lt;--</p></td></tr></table></body></html>")
	response.end
end if
%>

<!--#include file="../../conn/conn.asp"-->

<%
adlyid = clng(trim(request("adlyid")))
SQL = "select * from ad_ly where ly_id="&adlyid
set rs = conn.execute(SQL)
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style.css" rel="stylesheet" type="text/css">
<STYLE type="text/css">
  <!--
   BODY {
	scrollbar-face-color:#ffffff;
	scrollbar-arrow-color:#000000;
	scrollbar-highlight-color:#C0C0C0;
	scrollbar-3dlight-color:#ffffff;
	scrollbar-shadow-color:#ffffff;
	scrollbar-darkshadow-color:#ffffff;
	scrollbar-track-color:#ffffff;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
   }
  -->
  </STYLE>
<title>查看留言</title>
</head>

<body>
<table width="100%" height="100%"  border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#336633">
		<tr>
				<td height="25" bgcolor="#FFFFFF"><strong>留言人姓名</strong>:<%=rs("ly_name")%></td>
		</tr>
		<tr>
				<td height="25" bgcolor="#FFFFFF"><strong>留言时间</strong>:<%=rs("ly_time")%></td>
		</tr>
		<tr>
				<td valign="top" bgcolor="#FFFFFF">   <%=rs("ly_contect")%></td>
		</tr>
</table>
</body>
</html>
<%
rs.close
set rs = nothing
conn.close
set conn = nothing
%>

⌨️ 快捷键说明

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