📄 announce.asp
字号:
<title>无标题文档</title>
<style type="text/css">
<!--
.style1 {color: #0000FF}
-->
</style>
</head>
<body>
<span class="style1">公告栏</span>
<table width="100%" height="30" border="0">
<%
Set rs =Server.CreateObject("ADODB.Recordset")
sql="select * from announce"
rs.open sql,conn,1,1
I=1
do while not rs.eof and I<6
%>
<tr>
<th width="53" height="24" scope="row"><%=I%>.</th>
<td width="226"><A href="javascript:win=open('showannounce.asp?id=<%=rs(0)%>','offer','width=560,height=450,status=no,menubar=yes,scrollbars=yes,top=0,left=0'); win.focus()"><%=rs(3)%></a></td>
</tr>
<%
rs.movenext
I=I+1
loop
%>
</table>
<%
rs.close
set rs=nothing
%>
<table width="100%" border="0">
<tr>
<th width="100%" height="36" scope="col"> </th>
<th width="64" scope="col"><A href="javascript:win=open('showannounce.asp','offer','width=560,height=450,status=no,menubar=yes,scrollbars=yes,top=0,left=0'); win.focus()"><img src="img/_more.gif" width="58" height="20" border="0"></a></th>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -