admin_check.asp
来自「实现一个用JSP、Servlet技术实现的小型物流网站系统。实现功能如下:管理员」· ASP 代码 · 共 253 行
ASP
253 行
<% data_path="../../" 'ACC连接数据库路径,对SQL无效 %>
<!--#include file="../../conn/conn.asp"-->
<!--#include file="../../inc/safe.asp"-->
<!--#include file="../../inc/FileSystem.asp"-->
<%
if session("globalecmaster")="" or session("masterflag")="" then
response.write "<script language='javascript'>"
response.write"parent.location.href='../login.asp';</SCRIPT>"
response.end
end if
'权限限制^^^^^^^^^^^^^^^^^^^^
dim ishavegant
ishavegant=false
in_str=split(session("masterflag"),",")
for each ins in in_str
if trim(ins)="41" then
ishavegant=true
end if
next
if ishavegant=false then
response.redirect "../err.asp"
response.end
end if
'^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%>
<link rel="stylesheet" type="text/css" href="../css/style.css">
<script>
var checkflag="false";
function check(field){
if(checkflag=="false"){
for(i=0;i<field.length;i++){
field[i].checked=true;}
checkflag="true";
return "解除全选"; }
else {
for(i=0;i<field.length;i++) {
field[i].checked=false;}
checkflag="false";
return "选择全部";}}
</script>
<body>
<%
if not isempty(request("selAnnounce")) then
idlist=request("selAnnounce")
if instr(idlist,",")>0 then
dim idarr
idArr=split(idlist)
dim log_id
for i = 0 to ubound(idarr)
log_id=clng(idarr(i))
call deleteannounce(log_id)
next
else
call deleteannounce(clng(idlist))
end if
end if
if request("action")="" then
response.write "<script language='javascript'>"
response.write "alert('您提交的信息不符合规范!');"
response.write"javascript:history.back(-1)</SCRIPT>"
response.end
end if
action=Replace_Text(request("action"))
keywords=replace_text(request("keywords"))
sql="select * from wygkcn_productshow"
if action="0" then
sql=sql&" where flag=0"
end if
if action="1" then
sql=sql&" where flag=1"
end if
if keywords<>"" then sql=sql&" and cpmc like '%"&keywords&"%'"
sql=sql&" order by ID desc"
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
msg_per_page=20 '定义每页显示记录条数
%>
<!--#include file="../../inc/headpage.asp"-->
<table width="98%" border="0" cellspacing="0" cellpadding="0" align=center class="tableBorder">
<tr>
<th class="tableHeaderText" colspan=2 height=25>会员产品信息管理</th>
</tr>
<tr>
<td class="forumRowHighlight" colspan=2><p><B>注意</B>:<BR><font color=red>①任何的删除操作都是不可逆的,执行删除时请慎重。</font><BR>
<font color=blue>②点击<font color=red>产品信息</font>查看或修改该条供求详细信息。</font>
<br><font color=blue>③点击<font color=red>公司名</font>查看或者修改用户"企业信息"。</font>
</td>
</tr>
<FORM name=searchForm action="" method=post>
<tr>
<td width="19%" height=25 class="forumRowHighlight">
<B>管理操作选项</B></td>
<td width="81%" class=forumRowHighlight>关键字:<input name="keywords" type="text" value="<%=keywords%>">
</select> <input type="submit" value="立刻查找" id=submit name=submit></td>
</tr>
</form>
<tr>
<td height=25 class="forumRowHighlight"> </td>
<td height=25 class="forumRowHighlight"><a href="admin_check.asp?action=0">待审产品信息</a> | <a href="admin_check.asp?action=1">已审产品信息</a> | <a href="index.asp">推荐产品信息</a> | [<a href="javascript:location.reload()">刷新页面</a>] </td>
</tr>
</table>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" class="tableBorder">
<Form name="search" method="POST" action="admin_check.asp?action=<%=action%>&keywords=<%=keywords%>%>">
<tr>
<th class="tableHeaderText" height=25>会员产品列表</th>
<tr>
<td>
<TABLE width="100%" border="0" align="center" cellpadding="3" cellspacing="1" bordercolor="#111111" bordercolorlight="#D7EBFF" bordercolordark="#D7EBFF" style="border-collapse: collapse">
<TBODY>
<%
if rs.eof then
response.Write"<br><br><div align='center'>暂无数据信息</div><br><br>"
else
%>
<TR height=25>
<TD width="290" height="27" class=bodytitle><font color="#CC3300"><b>产品名称</b></font></TD>
<TD width="268" class=bodytitle><font color="#CC3300"><b>发布公司</b></font></TD>
<TD width="124" class=bodytitle align=center><font color="#CC3300"><b>发布时间</b></font></TD>
<TD width="171" class=bodytitle align="center"><font color="#CC3300"><b>操作</b></font> | <font color="#CC3300"><b>推荐</b></font></TD>
<TD width="65" align="center" class=bodytitle><input type='submit' value='删除' onClick="{if(confirm('您确定执行的操作吗?')){this.document.even.submit();return true;}return false;}"></TD>
</TR>
<%
do while not rs.eof and rowcount > 0%>
<TR height="20">
<TD width="290" class=forumRow>
<%
set rshi=server.CreateObject("adodb.recordset")
sqlhi="select id,qymc,trust_score,flag from wygkcn_corporation where id="&rs("gsid")
rshi.open sqlhi,conn,1,1
if rshi.eof then
%>
<% Set re = New RegExp
re.Pattern ="("&keywords&")"
re.IgnoreCase = True
re.Global=True
result = re.Replace(rs("cpmc"), "<font color=red>$1</font>")%><%=result%>
<%
end if
if not rshi.eof then
%>
<a href=edit.asp?id=<%=rs("id")%>><% Set re = New RegExp
re.Pattern ="("&keywords&")"
re.IgnoreCase = True
re.Global=True
result = re.Replace(rs("cpmc"), "<font color=red>$1</font>")%><%=result%></a>
<%rshi.close
end if
%>
</td>
<TD width="268" class=forumRow>
<%
set rs3=server.CreateObject("adodb.recordset")
sql3="select id,qymc,trust_score,gradeid,flag from wygkcn_corporation where id="&rs("gsid")
rs3.open sql3,conn,1,1
if not rs3.eof then
response.write"<a href='../vipgrade/edit.asp?id="&rs3("id")&"'>"&rs3("qymc")&"</a> (指数:<font color=red> "&rs3("trust_score")&"</font>)"
'取出等级-----------------------------
set rsk=server.CreateObject("adodb.recordset")
sqlk="select * from yixiang_vipgrade where roleid="&rs3("gradeid")
rsk.open sqlk,conn,1,1
if not rsk.eof then
response.Write("["&rsk("gradename")&"]会员")
rsk.close
end if
'---------------------------------------
else
Response.Write("该会员已不存在")
end if
%></td>
<TD width="124" class=forumRow align=center><%=rs("idate")%></td>
<TD width="171" class=forumRow align="center"><% if rs("Flag")=1 then %>
<p align="center"> <a href="shenghe1.asp?id=<%=rs("id")%>&action=<%=action%>">
<font color="#FF0000">已审核</font></a>
<%if instr(rs("zsbz")&"a","0")<>0 then %>
<a href="set.asp?action=0&id=<%=rs("id")%>">已推荐(取消)</a>
<%
else
%>
<a href="set.asp?action=1&id=<%=rs("id")%>">未推荐(推荐)</a>
<%end if%>
<%else%>
<p align="center"> <a href="shenghe.asp?id=<%=rs("id")%>&action=<%=action%>">
<font color="#008000">未审核</font></a>
<%end if%>
</td>
<TD width="65" align="center" class=forumRow><input type='checkbox' name='selAnnounce' value='<%=cstr(rs("ID"))%>'></td>
</TR>
<%
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
rs.movenext
loop
end if
%>
</TABLE>
</td>
</tr>
<tr><td class=forumRow><div align="right"><input type=button value=" 全部选定 " onClick="this.value=check(this.form)"></div></td></tr>
<tr>
<td class=forumrowHighLight align="center"><b><%=listPages("admin_check.asp?action="&action&"&keywords="&keywords&"")%></b></td>
</tr></form>
</table>
<%
sub deleteannounce(id)
Set RsID=Conn.Execute("Select * From wygkcn_productshow Where id="&cstr(id)&"")
IF NOt RsID.Eof then
ttid=RsID("id")
sortid=RsID("sortid")
typeid=RsID("typeid")
typeid_2=RsID("typeid_2")
showname=RsID("cpmc")
Pro_Name=HOPE_InstallDir&"productshow/offerdetail/"&sortid&"-"&typeid&"-"&typeid_2&"-"&ttid&".html"
Call FileDel(Pro_Name)'删除文件
end if
RsID.Close
Set RsID=NOthing
dim rs,sql
set rs=server.createobject("adodb.recordset")
sql="delete from [wygkcn_productshow] where id="&cstr(id)
conn.execute sql
if err.Number<>0 then
err.clear
response.write "删 除 失 败 !<br>"
end if
End sub
%>
<!--#include file="../copy.asp"-->
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?