📄 mybulletin.asp
字号:
<!--#include file="../inc/Secure.asp"-->
<!--#include file="../inc/connection.asp"-->
<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.asp"><img src="../images/zxgg.gif" width="110" height="20" border=0></a></td>
<td width="25%"><a href="read_index.asp"><img src="../images/lsgg.gif" width="110" height="20" border=0></a></td>
<td width="25%"><a href="NewBulletin.asp"><img src="../images/wyqfgg.gif" width="110" height="20" border=0></a></td>
<td width="25%"><img src="../images/wfbdgg-2.gif" width="110" height="20" border=0></td>
</tr>
</table>
</div>
<BR>
<%
LoginID=trim(session("LoginID"))
if LoginID="" then LoginID=0
UserName=GetTableValue ("tblUser","Name","ID",LoginID)
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 FromID="& LoginID &" Order by ID desc"
rs.pagesize=maxmessage
rs.open sql,Conn,1,1
totalpage=rs.pagecount
totalmessage=rs.recordcount
if totalmessage<>0 then
rs.AbsolutePage=currentpage
msgArr=rs.getrows(maxmessage)
end if
rs.close
%>
<div align=center>
<table border=0 width="90%"><tr><td>
<%
response.write "您已经发出的公告 共" & totalmessage & "条/" & totalpage & "页,每页"& maxmessage &"条"
if totalpage>0 then
response.write ",第" & currentpage & "页 "
end if
if totalpage>1 then
if currentpage>1 then%>
<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?page=<%=currentpage-1%>">上页</a>
<%
end if
if currentpage+1<=totalpage then%>
<a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?page=<%=currentpage+1%>">下页</a>
<%
end if
end if
%>
</td></tr></table></div>
<div align=center>
<table border=0 width="90%" cellspacing="1" cellpadding=3 bgcolor="#005AB5">
<tr bgcolor=#53A9FF>
<td>分类</td>
<td>标题</td>
<td>主题词</td>
<td width=80>发布人</td>
<td>发布时间</td>
</tr>
<%
if isempty(msgArr) then
response.write "<tr bgcolor=#ffffff><td colspan=7>暂时没有内容。</td></tr>"
else
for i = 0 to UBound(msgArr,2)
if i mod 2 =0 then
strColor="#FFFFFF"
else
strColor="#E6F2FF"
end if
%>
<tr bgcolor=<%=strColor%>>
<td nowrap width=50><%=GetTableValue("tblBulletinClass","Name","ID",trim(msgArr(1,i)))%></td>
<td><a href="Detail.asp?ID=<%=trim(msgArr(0,i))%>"><%=trim(msgArr(2,i))%></a></td>
<td><a href="Detail.asp?ID=<%=trim(msgArr(0,i))%>"><%=trim(msgArr(3,i))%></a></td>
<td nowrap><%=trim(msgArr(4,i))%></td>
<td nowrap width=120><%=trim(msgArr(5,i))%></td>
</tr>
<%
next
end if
%>
</table>
</div>
</BODY>
</HTML>
<%
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,Conn,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/connclose.asp"-->
<script language=javascript>
function CheckDelete()
{
return confirm("确实删除吗?");
}
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -