📄 ad_show.asp
字号:
<!--#include file="../../conn/conn.asp"-->
<!--#include file="../../conn/fun.asp"-->
<%
ad_id = TxtToLng("ad_id",2)
SQL = "select ad_title,ad_email,ad_tel,ad_time,ad_contect,ad_sel from ad_mes where ad_id="&ad_id
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" cellpadding="4" cellspacing="0">
<tr>
<td height="25"><strong><%=rs("ad_title")%>
</strong><br><hr size="1" noshade color="#336633"></td>
</tr>
<tr>
<td valign="top"> <p>联系EMail:<%=rs("ad_email")%> <br>
手机/电话:<%=rs("ad_tel")%><br>
发布时间:<%=rs("ad_time")%></p>
<p><%=rs("ad_contect")%></p>
<%
if rs("ad_sel") then
ad_sel = "欢迎与我联系其他服务、产品或商业机会。"
else
ad_sel = "谢绝无关推销。"
end if
%>
<p><%=ad_sel%></p></td>
</tr>
<tr>
<td height="1" valign="top"><hr size="1" noshade color="#336633"></td>
</tr>
<tr>
<td align="center"><input onClick="window.close()" name="Submit" type="submit" class="button01" value="关闭窗口"></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 + -