📄 list_review.asp
字号:
<%@language="VBscript"%>
<%Response.Expires=0%>
<%
oabusyname=request.cookies("oabusyname")
oabusyusername=request.cookies("oabusyusername")
oabusyuserdept=request.cookies("oabusyuserdept")
oabusyuserlevel=request.cookies("oabusyuserlevel")
function opendb(DBPath,sessionname,dbsort)
dim conn
Set conn=Server.CreateObject("ADODB.Connection")
DBPath1=server.mappath("../../db/#sdoa.asa")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath1
set session(sessionname)=conn
set opendb=session(sessionname)
end function
set conn=opendb("oabusy","conn","accessdsn")
set rs=server.createobject("adodb.recordset")
sql="select * from userinf where username='" & oabusyusername&"'"
rs.open sql,conn,1
cook_allow_control_note=rs("allow_control_note")
conn.close
set conn=nothing
set rs=nothing
if cook_allow_control_note="no" then
response.write("<script language=""javascript"">")
response.write("alert(""对不起,你没有进行此项操作的权限!"");")
response.write("</script>")
response.end
end if
%>
<!--#include file="../include/checkadmin.asp"-->
<!--#include file="../include/conn.asp"-->
<!--#include file="../include/tools.asp"-->
<style>
td{font-size:13px;}
</style>
<script language="javascript">
//删除
function doDelete(){
if(checkedNum()>0){
if(confirm("确定要删除所选择的评论吗?\n注意:删除后不能恢复!")){
document.frmlist.action="delete_review.asp";
document.frmlist.submit();
}
}else{
alert("请选择您要删除的评论!");
}
}
//选择
function doSelect(){
if(document.frmlist.btnSelect.value=="全选"){
for(var i=0;i<document.frmlist.id.length;i++)
document.frmlist.id[i].checked=true;
document.frmlist.btnSelect.value="取消";
}else{
for(var i=0;i<document.frmlist.id.length;i++)
document.frmlist.id[i].checked=false;
document.frmlist.btnSelect.value="全选";
}
}
//全选
function doCheckall(){
if(document.frmlist.id[0].checked){
for(var i=0;i<document.frmlist.id.length;i++)
document.frmlist.id[i].checked=true;
document.frmlist.btnSelect.value="取消";
}else{
for(var i=0;i<document.frmlist.id.length;i++)
document.frmlist.id[i].checked=false;
document.frmlist.btnSelect.value="全选";
}
}
//数目
function checkedNum(){
var num=0;
for(var i=0;i<document.frmlist.id.length;i++){
if(document.frmlist.id[i].checked)
num++;
}
return num;
}
</script>
<%
keyword=request.form("keyword")
days=request.form("days")
if days="" or isnull(days) or not isnumeric(days) then days="0"
if keyword<>"" then search_string = search_string & " and content like '%"&keyword&"%'"
if days<>"" and days<>"0" then search_string = search_string & " and datediff('d',regdate,now())<"&days
%>
<table border="0" cellspacing="1" width="600" >
<tr>
<td height="23"><img src="images/spacer.gif" width="10" height="1"><font style="font-size:13px;" ><b>维护评论</b></font></td>
</tr>
<tr>
<td height="23" bgcolor="#FFFFFF">
<!--search-->
<br>
<div align="center">
<form name="frmsearch" method="post">
关键字:
<input type="text" name="keyword" value="<%=keyword%>">
<select name="days">
<option value="0" <%if days="0" then response.write("selected")%>>所有</option>
<option value="1" <%if days="1" then response.write("selected")%>>今天</option>
<option value="10" <%if days="10" then response.write("selected")%>>近10天</option>
<option value="20" <%if days="20" then response.write("selected")%>>近20天</option>
<option value="30" <%if days="30" then response.write("selected")%>>近30天</option>
</select>
<input type="submit" name="btnSubmit" value="搜索" style="width:60px;">
</form>
</div>
<!--list-->
<table align="center" border="0" width="96%" cellpadding="1" cellspacing="1" bgcolor="#D6DFF7">
<form name="frmlist" method="post">
<tr bgcolor="#FFFFFF" align="center">
<td width="30"><b>ID</b></td>
<td width="30"><input type="checkbox" onclick="javascript:doCheckall();" name="id" value="0"></td>
<td><b>评论</b></td>
</tr>
<%
dim sqlstr
dim intPage,itotalrecord,intPagesize,itotalpage
intPage=request.form("intPage")
if intPage="" or isnull(intPage) or not isnumeric(intPage) then intPage=1
intPage=cint(intPage)
sqlstr="select * from V_News_Review where 1<>0 "&search_string&" order by reviewid desc"
set rs=server.createobject("adodb.recordset")
rs.open sqlstr,conn,3,1
intRecordcount=rs.recordcount
if intRecordcount>0 then
rs.pagesize=8
intPagecount=rs.pagecount
if intPage>intPagecount or intPage<1 then intPage=1
rs.absolutePage=intPage
for i=1 to rs.pagesize
%>
<tr bgcolor="#FFFFFF" align="center">
<td height="26"><%=rs("reviewid")%></td>
<td><input type="checkbox" name="id" value="<%=rs("reviewid")%>"></td>
<td align="left">
[<%=rs("regdate")%> <a href="mailto:<%=txt2html(rs("yourmail"))%>"><%=txt2html(rs("yourname"))%></a> 对 <a target="_blank" href="../docc/news_detail.asp?id=<%=rs("newsid")%>"><%=txt2html(rs("title"))%></a> 评论]<BR><%=txt2html(rs("content"))%>
</td>
</tr>
<%
rs.movenext
if rs.eof then exit for
next
end if
%>
<tr bgcolor="#FFFFFF">
<td colspan="3" align="center" height="60">
<input type="button" name="btnSelect" value="全选" onclick="javascript:doSelect();" style="width:60px;">
<input type="button" name="bntDelete" value="删除" onclick="javascript:doDelete();" style="width:60px;">
</td>
</tr>
<input type="hidden" name="intPage" value="<%=intPage%>">
<input type="hidden" name="keyword" value="<%=keyword%>">
<input type="hidden" name="days" value="<%=days%>">
</form>
</table>
<br>
</td>
</tr>
<!--showpage-->
<form name="frmpage" method="post">
<input type="hidden" name="keyword" value="<%=keyword%>">
<input type="hidden" name="days" value="<%=days%>">
<input type="hidden" name="columnid" value="<%=columnid%>">
<tr>
<td colspan="2" height="23" align="center">
<!--#include file="../include/showpage.asp"-->
</td>
</tr>
</form>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -