?? managebulletin.htm
字號(hào):
<%response.expires=-1%>
<!--#include file="../inc/Secure.htm"-->
<%dim ThisKey
ThisKey = "x"
%>
<!--#include file="../inc/permission.htm"-->
<!--#include file="../inc/conn.htm"-->
<%
LoginID=trim(session("LoginID"))
if LoginID="" then LoginID=0
UserName=GetTableValue ("tblUser","Name","ID",LoginID)
Department = GetTableValue ("tblUser","Department","ID",LoginID)
if trim(request("todo"))="delete" and trim(request("SelectID"))<>"" and isnumeric(trim(request("SelectID"))) then
oConn.execute "delete tblBulletin where ID="& trim(request("SelectID"))
end if
maxmessage=20
currentpage=request("page")
if currentpage="" then
currentpage=1
end if
set rs=Server.CreateObject("ADODB.RecordSet")
sql="select ID,ClassID,Title,KeyWords,FromName,Times from tblBulletin where ID>0 Order by ID desc"
rs.pagesize=maxmessage
rs.open sql,oConn,1,1
totalpage=rs.pagecount
totalmessage=rs.recordcount
if totalmessage<>0 then
rs.AbsolutePage=currentpage
msgArr=rs.getrows(maxmessage)
end if
rs.close
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="../CSS/main.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" leftmargin=20 topmargin=5>
<BR>
<div align=center>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td width="25%"><a href="index.htm"><img src="../images/zxgg.gif" width="110" height="20" border=0></a></td>
<td width="25%"><img src="../images/lsgg-2.gif" width="110" height="20" border=0></td>
<td width="25%"><a href="NewBulletin.htm"><img src="../images/wyqfgg.gif" width="110" height="20" border=0></a></td>
<td width="25%"><a href="myBulletin.htm"><img src="../images/wfbdgg.gif" width="110" height="20" border=0></a></td>
</tr>
</table>
</div>
<BR>
<div align=center>
<table border=0 width="90%" cellpadding=0 cellspacing=0><tr>
<td> 上頁(yè) 下頁(yè) </td>
</tr></table>
<div align=center>
<table border=0 width="90%" cellspacing="1" cellpadding=3 bgcolor="#005AB5">
<tr bgcolor=#53A9FF>
<td>分類(lèi)</td>
<td>標(biāo)題</td>
<td>主題詞</td>
<td>發(fā)布人</td>
<td>發(fā)布時(shí)間</td>
<td>操作</td>
</tr>
<%
if isempty(msgArr) then
response.write "<tr><td colspan=7>暫時(shí)沒(méi)有內(nèi)容。</td></tr>"
else
for i = 0 to UBound(msgArr,2)
if i mod 2 =0 then
strColor="#FFFFFF"
else
strColor="#E6F2FF"
end if
%>
<tr >
<td nowrap width=50><%=GetTableValue("tblBulletinClass","Name","ID",trim(msgArr(1,i)))%></td>
<td><a href="Detail.htm?ID=<%=trim(msgArr(0,i))%>"><%=trim(msgArr(2,i))%></a></td>
<td><a href="Detail.htm?ID=<%=trim(msgArr(0,i))%>"><%=trim(msgArr(3,i))%></a></td>
<td nowrap width=80><%=trim(msgArr(4,i))%></td>
<td nowrap width=120><%=trim(msgArr(5,i))%></td>
<td nowrap><a href="ManageBulletin.htm?todo=delete&selectID=<%=trim(msgArr(0,i))%>" onclick="return CheckDelete();">刪除</a></td>
</tr>
<%
next
end if
%>
</table>
</div>
<BR><BR>
</BODY>
</HTML>
<script language=javascript>
function CheckDelete()
{
// document.NewsForm.cmdDelete.value !=""
return confirm("確實(shí)刪除嗎?");
}
</script>
<%
Function GetTableValue(TableName,Field,ValueField,Value)
if TableName<>"" and Value<>"" then
Set RsTmp = Server.Createobject("Adodb.recordset")
strSql = "Select "& Field &" from "& TableName &" where "& ValueField &"='"& Value &"'"
Rstmp.open strSql,oConn,1,1
If not Rstmp.eof then
GetTableValue=trim(Rstmp(Field))
else
GetTableValue=""
end if
Rstmp.close
'set RsTmp = Nothing
else
GetTableValue=""
end if
End Function
%>
<!--#include file="../inc/conn_close.htm"-->
<script language=javascript>
function CheckDelete()
{
return confirm("確實(shí)刪除嗎?");
}
</script>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -