notice.asp
来自「菜单是应用程序的界面」· ASP 代码 · 共 22 行
ASP
22 行
<!--#include file="conn.asp"-->
<link href=Skin/<%=venshop_skin%>/css.css rel=STYLESHEET type=text/css>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<body topmargin="1" leftmargin="1" rightmargin="1" bottommargin="1">
<%id=Request.QueryString("id")
chkid(id)
set rs=server.createobject("adodb.recordset")
sql="select * from venshop_pub where id="&request("id")
rs.open sql,conn,1,1
if not rs.eof then%><title><%=rs("title")%></title>
<div align="center">
<table width="350" border="0" cellpadding="5" cellspacing="1" >
<tr><td height="23" align="center" style="border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom: 1px solid #D7D7D7">
<b><font color="#0000FF"><%=rs("title")%> </font></b></td></tr>
<tr><td height="220" valign="top">
<p style="margin:5px; " align="right"><font color="#808080">日期:<%=rs("date")%></font></p>
<%=rs("msg")%></td></tr></table></div>
<%end if
rs.close
set rs=nothing
conn.close
set conn=nothing%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?