1、信息表新建立一個字段,並用0、1的方法判斷信息的狀態。
2、新建一個頁面,定時刷新,並查詢表中是否有字段值為0的記錄。
3、當管理員點擊查看該信息的時候,將字段值改為1。
其中最關鍵的是第2步,下面給出所需代碼
定時刷新指定頁面。比如新建的頁面叫a.asp
那麼就是<script>setTimeout("location.href="a.asp'",10000)</script>
數據庫連接。
<%set rs = conn.execute("select * from [表名] where 字段名= 0 ")
if not rs.eof then%>
<bgsound src="音頻路徑" loop=false>
<%end if
rs.close:set rs = nothing%>