index.asp

来自「实现一个用JSP、Servlet技术实现的小型物流网站系统。实现功能如下:管理员」· ASP 代码 · 共 223 行

ASP
223
字号
<%@ codepage ="936" %>
<%
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)="22" then 
 ishavegant=true
 end if
 next 
 if ishavegant=false then
 response.redirect "../err.asp"
 response.end
 end if
 '^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^





%>
<% data_path="../../" 'ACC连接数据库路径,对SQL无效 %>
<!--#include file="../../conn/conn.asp"-->
<!--#include file="../../inc/FileSystem.asp"-->
<!--#include file="../../inc/safe.asp"-->
<LINK href="../css/style.css" rel=stylesheet type=text/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>
<title>专项商机管理</title>
<%
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))
				Set RsVip=Conn.Execute("Select vipinfo_id,viptype,picture from yixiang_vipinfo Where vipinfo_id="&log_id&"")
				
				    ttid=RsVip("vipinfo_id")
					 typeid=RsVip("viptype")
					 picture=RsVip("picture")
					 RsVip.Close
					 Set RsVip=Nothing
					
				PicFile=HOPE_InstallDir&picture
				if instr(picture,"nopicture.gif")<=0 then 
				call FileDel(PicFile)'删除相应图片
				end if
				
				VipFile=HOPE_InstallDir&"vipinfo/offerdetail/"&typeid&"-"&ttid&".html"
				call FileDel(VipFile)'删除相应的生成文件
				Response.Write("<iframe src='../../manage/makehtml/vipinfo/makelist.asp?all=all&other=SendTo&TypeId="&typeid&"' widht=0 height=0></iframe>")
			call deleteannounce(log_id)
						Response.write ("<script>window.location.href='index.asp'</script>")
						
		next
	else
			
			
			Set RsVip=Conn.Execute("Select vipinfo_id,viptype,picture from yixiang_vipinfo Where vipinfo_id="&idlist&"")
				
				    ttid=RsVip("vipinfo_id")
					 typeid=RsVip("viptype")
					  picture=RsVip("picture")
					 RsVip.Close
					 Set RsVip=Nothing
					 
				PicFile=HOPE_InstallDir&picture
				if instr(picture,"nopicture.gif")<=0 then
				call FileDel(PicFile)'删除相应图片
				end if
				VipFile=HOPE_InstallDir&"vipinfo/offerdetail/"&typeid&"-"&ttid&".html"
				call FileDel(VipFile)
							Response.Write("<iframe src='../../manage/makehtml/vipinfo/makelist.asp?all=all&other=SendTo&TypeId="&typeid&"' widht=0 height=0></iframe>")

			call deleteannounce(clng(idlist))
			Response.write ("<script>window.location.href='index.asp'</script>")

	end if
end if

keywords=replace_text(request("keywords"))
if request("typeid")>"" then
if Chkrequest(request("typeid")) then
typeid=request("typeid")
else
Response.Redirect ("/login/chklogin.asp?login=4")
end if
end if
set rs=server.createobject("adodb.recordset") 
sql="select * from Yixiang_vipinfo"
if typeid>"" then sql=sql&" where viptype="&typeid&""

if keywords>"" then sql=sql&" and vipshowname like '%"&keywords&"%'"

sql=sql&" order by vipinfo_ID desc"
Set rs= Server.CreateObject("ADODB.Recordset") 
rs.open sql,conn,1,1 

msg_per_page=20 '定义每页显示记录条数
%>
<table width="98%" border="0" cellspacing="0" cellpadding="0" align=center class="tableBorder"> 
  <tr> 
     <th height=25 colspan="2" class="tableHeaderText">专项商机管理 </th> 
  </tr> 
  <tr> 
     <td colspan="2" class="forumRowHighlight"><p><B>注意</B>:<BR> 
         ①类别直接与发布的信息相关联,删除类别可能会影响到以前发布的专项商机信息。<BR> </td> 
   </tr> 
  <tr> 
     <td width="10%" height=25 class="forumRowHighlight"> <B>操作选项</B></td> 
         <FORM name=searchForm action="index.asp" method=post onsubmit="javascript:if(doSearch()==false) return false;"><td class="forumRowHighlight">
       关键字:<input name="keywords" type="text" value="<%=keywords%>">
&nbsp;商机类别:
<select name="typeid" size="1">  
<%
set rs1=conn.execute("select * from Yixiang_vipinfo_class")
do while not rs1.eof
response.write "<option value='"&rs1("typeid")&"'>"&rs1("type")&"</option>"&chr(13)+chr(10)
rs1.movenext
loop
rs1.close
%>
</select> <input type="submit" value="立刻查找" id=submit name=submit>
         </td></form>
  </tr>
  <tr>
    <td height=25 class="forumRowHighlight">&nbsp;</td>
	 <td class="forumRowHighlight"><a href="index.asp">管理专项商机</a> | <a href="add_vipinfo.asp">添加专项商机</a> | <a href="type.asp">管理商机类别</a> | <a href="class_ok.asp?action=add_class_1">添加专项类别</a> | [<a href="javascript:location.reload()">刷新页面</a>] </td> 
  </tr> 
</table>
<SCRIPT LANGUAGE='JavaScript' SRC='/js/search.js' TYPE='text/javascript'></script>
<!--#include file="../../inc/headpage.asp"-->
<Form name="search" method="POST" action="index.asp">
  <TABLE width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="tableBorder">
  <tr>
		<th class="tableHeaderText" height=25 colspan="5">商机列表</th>
		<tr><td colspan="5">			<%
if rs.eof then
response.Write"<br><br><div align='center'>暂无数据信息</div><br><br>"
else
%> </td></tr>
    <TR height=25 class=bodytitle>
<TD width="403" align="left" class=bodytitle><font color="ff6600"><b>信息标题</b></font></td>
<TD width="139" align="left" class=bodytitle><font color="ff6600"><b>所属类别</b></font></td>
<TD width="215" align="center" class=bodytitle><font color="ff6600"><b>发布日期</b></font></td>
<TD width="127" align="center" class=bodytitle><font color="ff6600"><b>修改</b></font></td>
<TD width="57" align="center" class=bodytitle><input type='submit' value='删除'></td>
</TR>
<%
do while not rs.eof and rowcount > 0%>
<TR height="20"> 
<TD align="left" class=forumRow><a href="../../vipinfo/InfoHtml.asp?vipinfo_id=<%=rs("vipinfo_id")%>" target="_blank"><% Set re = New RegExp
re.Pattern ="("&keywords&")"
re.IgnoreCase = True
re.Global=True
result = re.Replace(rs("vipshowname"), "<font color=red>$1</font>")%><%=result%></a></td>
<TD align="left" class=forumRow><%
if rs("viptype")<>"" then
set rs3=conn.execute("select typeid,type from Yixiang_vipinfo_class where typeid="&rs("viptype")&"")

response.write"<a href='index.asp?typeid="&rs3("typeid")&"'>"&rs3("type")&"</a>"
rs3.close
set rs3=nothing
end if 
%></td>
<TD width="215" align="center" class=forumRow><%=FormatDate(rs("dateandtime"),2)%> </td>
<TD align="center" class=forumRow><a href="edit.asp?vipinfo_id=<%=rs("vipinfo_id")%>">修改</a></td>
<TD width="57" align="center" class=forumRow><input type='checkbox' name='selAnnounce' value='<%=cstr(rs("vipinfo_ID"))%>'></td>
</TR>
<%
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
rs.movenext
loop
end if

%>
<TR height="20" bgcolor="#ffffff">
  <TD colspan="5" align="left" class=forumRow><div align="right"><input type=button value=" 全部选定 " onClick="this.value=check(this.form)"></div></td>
  </TR>
<TR height="20" bgcolor="#ffffff">
  <TD class=forumrowHighLight align="center" colspan="5"><b><%=listPages("index.asp?typeid="&typeid&"&keywords="&keywords&"")%></b></td>
</TR>

</TABLE>
</form>
  <%
sub deleteannounce(id)
dim rs,sql
set rs=server.createobject("adodb.recordset")
sql="delete from [Yixiang_vipinfo] where vipinfo_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 + -
显示快捷键?