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

📄 index.asp

📁 全球商务网站系统介绍 GLOBALEC.COM.CN[生成HTML版] 系统概述: 软件名称:全球商务网站系统 当前版本:V1.0 最新版本:V1.1 运行环境:WINNT+(IIS)
💻 ASP
字号:
<%@ codepage ="936" %>
<%
if Request.Cookies("globalec")("globalecmaster")="" or Request.Cookies("globalec")("masterflag")="" then
response.write "<script language='javascript'>"
response.write"this.location.href='../login.asp';</SCRIPT>" 
response.end
end if
if instr(Request.Cookies("globalec")("masterflag"),"101")=0 then
response.redirect "../err.asp"
response.end
end if
%>
<!--#include file="../../conn/conn.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))
call deleteannounce(log_id)
next
else
call deleteannounce(clng(idlist))
end if
end if
keywords=replace_text(request("keywords"))
if request("sortid")>"" then
if Chkrequest(request("sortid")) then
sortid=request("sortid")
else
Response.Redirect ("/login/chklogin.asp?login=4")
end if
end if
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 help"
if sortid>"" then sql=sql&" where sortid="&sortid&""
if typeid>"" then sql=sql&" and typeid="&typeid&""
if keywords>"" then sql=sql&" and showname like '%"&keywords&"%'"

sql=sql&" order by 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="sortid" size="1">  
<%
set rs1=conn.execute("select * from help_sort")
do while not rs1.eof
response.write "<option value='"&rs1("sortid")&"'>"&rs1("sort")&"</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="addhelp.asp">添加帮助信息</a> | <a href="sort.asp">管理帮助类别</a> | <a href="Admin_Class_Ok.asp?action=add_help_sort">添加帮助类别</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="446" align="left" class=bodytitle><font color="ff6600"><b>标题</b></font></td>
<TD width="263" align="left" class=bodytitle><font color="ff6600"><b>所属类别</b></font></td>
<TD width="113" align="center" class=bodytitle><font color="ff6600"><b>发布日期</b></font></td>
<TD width="62" 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="/help/bin/show.asp?id=<%=rs("id")%>" target="_blank"><% Set re = New RegExp
re.Pattern ="("&keywords&")"
re.IgnoreCase = True
re.Global=True
result = re.Replace(rs("showname"), "<font color=red>$1</font>")%><%=result%></a></td>
<TD align="left" class=forumRow><%
set rs3=conn.execute("select sortid,sort from help_sort where sortid="&rs("sortid")&"")
response.write"<a href='index.asp?sortid="&rs3("sortid")&"'>"&rs3("sort")&"</a>"
%> > <%
set rs5=conn.execute("select typeid,typename from help_type where typeid="&rs("typeid")&"")
response.write"<a href='index.asp?sortid="&rs("sortid")&"&typeid="&rs5("typeid")&"'>"&rs5("typename")&"</a>"
%></td>
<TD width="113" align="center" class=forumRow><%=FormatDate(rs("dateandtime"),2)%> </td>
<TD align="center" class=forumRow><a href="edit.asp?id=<%=rs("id")%>">修改</a></td>
<TD width="57" 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
%>
<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?sortid="&sortid&"&keywords="&keywords&"")%></b></td>
</TR>

</TABLE>
</form>
  <%
sub deleteannounce(id)
dim rs,sql
set rs=server.createobject("adodb.recordset")
sql="delete from [help] 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -