announce.asp

来自「ASP,版本,HUANYING NI DE XIAZAI ! LIANXIFAN」· ASP 代码 · 共 49 行

ASP
49
字号


<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">&nbsp;</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 + =
减小字号Ctrl + -
显示快捷键?