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

📄 popup.asp

📁 庐江二中
💻 ASP
字号:
<!--#include file=conn.asp -->
<!--#include file="const.asp"-->
<html>
<head>
<title>庐江二中校园网公告</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<!--#include file="style.asp"-->
<LINK href=style.css rel=stylesheet>
</head>

<body background="images/bg.gif" text="#000000">
<table border="0" cellspacing="0" cellpadding="0" width="100%" align="center" bgcolor="<%=RightBColor%>">
  <tr> 
    <td bgcolor="<%=RightCColor%>"> 
      <table width="100%" border="0" align="center" cellpadding="8" cellspacing="0" background="images/bg.gif" style="TABLE-LAYOUT: fixed">
        <tr> 
          <td style="WORD-WRAP: break-word"> 
            <table border="0" width="100%" cellspacing="0">
              <tr> 
                <%
sql="SELECT * FROM Announce where popup=1 and Ischecked=1 order by id desc"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
%>
                <td width="100%" align="center">尚无任何公告</td>
                <%
else
%>
                <td width="100%"> 
                  <%
do while not rs.EOF
%>
                  <table border="0" width="100%" cellspacing="2" cellpadding="2">
                    <%	if not isnull(rs("Title")) then%>
                    <TR> 
                      <td width="100%" align=center height=57><font color=<%=AlertFColor%> size="+1"><b><%=rs("Title")%></b></font></td>
                    </TR>
                    <%
end if%>
                    <TR> 
                      <td width="100%"><%=rs("Content")%></td>
                    </TR>
                  </table>
                  <%
rs.movenext
loop%>
                </td>
                <%
end if
rs.close
%>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<%set rs=nothing
conn.close
set conn=nothing
%>

</body>
</html>

⌨️ 快捷键说明

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