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

📄 admin_check.asp

📁 OA最新破解2008版 全新 破解 希望大家用着舒服
💻 ASP
字号:
<%@ codepage ="936" %>
<%
if instr(session("flag"),"12")=0 then
response.redirect "../login.asp"
response.end
end if
%>
<!--#include file="../../conn/dbconn2.asp" -->
<link rel="stylesheet" type="text/css" href="../style.css">
<body bgcolor="#FFFFFF" marginheight=0 marginwidth=0 leftmargin=0>
<script language="javascript">
function show_set(mylink)
{
window.open(mylink,"new",'top=110,left=280,width=240,height=40,scrollbars=no')
}
</script>
<%
DIM totalPut 
DIM CurrentPage
DIM TotalPages
const MaxPerPage=8
DIM i,j
IF not isempty(request("page")) then
currentPage=cint(request("page"))
ELSE
currentPage=1
END IF
DIM rs
DIM sql
if not isempty(request("selAnnounce")) then
idlist=request("selAnnounce")
if instr(idlist,",")>0 then
dim idarr
idArr=split(idlist)
dim id
for i = 0 to ubound(idarr)
id=clng(idarr(i))
call deleteannounce(id)
next
else
call deleteannounce(clng(idlist))
end if
end if 
typeid=request("typeid")
set rs=server.createobject("adodb.recordset") 
'sql="select * from info where showname like '%"&request("txtitle")&"%'"
sql="select info_id,type,showname,dateandtime,flag from info where flag=1"
if request("txtitle")>"" then sql=sql&" and showname like '%"&request("txtitle")&"%'"

if typeid>"" then sql=sql&" and type like '%"&cstr(typeid)&"%'"

sql=sql&" order by info_ID desc"
rs.open sql,conn,1,1 
if rs.eof and rs.bof then 
response.write "<p align='center'>对不起,没有您要查询的信息</p>" 
else 
totalPut=rs.recordcount 
if currentpage<1 then 
currentpage=1 
end if 
if (currentpage-1)*MaxPerPage>totalput then 
if (totalPut mod MaxPerPage)=0 then 
currentpage= totalPut \ MaxPerPage 
else 
currentpage= totalPut \ MaxPerPage + 1 
end if 
end if 
if currentPage=1 then 
showContent
showpage totalput,MaxPerPage,"Admin_Check.ASP"
else 
if (currentPage-1)*MaxPerPage<totalPut then 
rs.move (currentPage-1)*MaxPerPage 
dim bookmark 
bookmark=rs.bookmark 
showContent
showpage totalput,MaxPerPage,"Admin_Check.ASP"
else 
currentPage=1 
showContent
showpage totalput,MaxPerPage,"Admin_Check.ASP"
end if 
end if 
rs.close 
end if
set rs=nothing
sub showContent
%>
<Form name="search" method="POST" action="Admin_Check.ASP">
<TABLE width="600" border=0 align="center" cellPadding=3 cellSpacing=1>
  <TBODY>

<TR> 
<TD height=30>
<font color="#ff0000">点击信息标题进行相应操作</font>
</td>
<TD>
<td><IMG border=0 src="../images/search.gif"></td>
<td>&nbsp;搜索关键字:<input type="text" name="txtitle" size="25" style="font-size: 9pt">&nbsp;&nbsp;
<select style="font-size: 9pt" name="typeid">
<option value="" selected>--选择类别--</option>
<option value="买">买</option>
<option value="卖">卖</option>
</select><INPUT align=absMiddle border=0 src="../images/search1.gif" type=image></td>
</TR>

</TBODY>
</TABLE><BR><BR>

  <TABLE width="600" border="1" align="center" cellpadding="4" cellspacing="0" bordercolor="#111111" bordercolorlight="#660000" bordercolordark="#660000" style="border-collapse: collapse">
    <TR height=25 bgcolor="#d5d5d5"> 
<TD width="30" align="left"><font color="ff6600"><b>编号</b></font></td>
<TD width="336" align="center"><font color="ff6600"><b>信息标题</b></font></td>

<TD width="69" align="center"><font color="ff6600"><b>发布日期</b></font></td>
<TD width="40" align="center"><font color="ff6600"><b>审核</b></font></td>
<TD width="55" align="center"><input type='submit' value='删除'></td>
</TR>
<%do while not rs.eof%>
<TR height="20" bgcolor="#ffffff"> 
<TD width="30" align="left"><font face="Arial"><b><%=rs("info_id")%></b></font> </td>
<TD width="336"><font color="#079807">【<%=rs("type")%>】</font><a href=edit.asp?info_id=<%=rs("info_id")%>><%=rs("showname")%></a></td>

<TD width="69" align="center"><%=rs("dateandtime")%> </td>
<TD width="40" align="center">
<% if rs("Flag")=1 then %><p align="center">
<a href="shenghe1.asp?info_id=<%=rs("info_id")%>&page=<%=CurrentPage%>">
<font color="#FF0000">已审核</font></a><%else%><p align="center">
<a href="shenghe.asp?info_id=<%=rs("info_id")%>&page=<%=CurrentPage%>">
<font color="#008000">未审核</font></a><%end if%></td>
<TD width="55" align="center"><input type='checkbox' name='selAnnounce' value='<%=cstr(rs("info_ID"))%>'></td>
</TR>
<%i=i+1
IF i>=MaxPerPage then exit do
rs.movenext
loop
%>
</TABLE>
</form>
<%
end sub
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then 
n= totalnumber \ maxperpage 
else 
n= totalnumber \ maxperpage+1 
end if 
if CurrentPage<2 then 
response.write "<table align='center' border=0 width=600 cellspacing=0 cellpadding=0 bgcolor=#d5d5d5>"
response.write "<tr height=30>"
response.write "<td align=left>"
response.write "共<font color=ff6600><b>"&n&"</b></font>页&nbsp;第<font color=ff6600><b>"&CurrentPage&"</b></font>页&nbsp;共检索到<font color=ff6600><b>"&totalnumber&"</b></font>条信息</TD>"
response.write "<td align=right>"
response.write "【最前页】【上一页】" 
else 
response.write "<table border=0 width=600 cellspacing=0 cellpadding=0 bgcolor=#d5d5d5>"
response.write "<tr height=30>"
response.write "<td align=left>"
response.write "共<font color=ff6600><b>"&n&"</b></font>页&nbsp;第<font color=ff6600><b>"&CurrentPage&"</b></font>页&nbsp;共检索到<font color=ff6600><b>"&totalnumber&"</b></font>条信息" 
response.write "<td align=right>"
response.write "【<a href="&filename&"?page=1&typeid="&tyeid&"&txtitle="&request("txtitle")&">最前页</a>】" 
response.write "【<a href="&filename&"?page="&CurrentPage-1&"&typeid="&typeid&"&txtitle="&request("txtitle")&">上一页</a>】" 
end if 
if n-currentpage<1 then 
response.write "【下一页】【最后页】" 
else 
response.write "【<a href="&filename&"?page="&(CurrentPage+1)&"&typeid="&typeid&"&txtitle="&request("txtitle")&">" 
response.write "下一页</a>】【<a href="&filename&"?page="&n&"&typeid="&typeid&"&txtitle="&request("txtitle")&">最后页</a>】" 
end if 
response.write "</td>"
response.write "</tr>"
response.write "</table>"
response.write "</form>"
end function
sub deleteannounce(id)
dim rs,sql
set rs=server.createobject("adodb.recordset")
sql="delete from [info] where info_id="&cstr(id)
conn.execute sql
if err.Number<>0 then
err.clear
response.write "删 除 失 败 !<br>"
end if
End sub
%>
</body> 
</html>

⌨️ 快捷键说明

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