?? info.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"),"83")=0 then
response.redirect "../err.asp"
response.end
end if
%>
<!--#include file="../../conn/conn.asp"-->
<!--#include file="../../inc/safe.asp"-->
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../css/style.css" rel=stylesheet type=text/css>
<SCRIPT language=javascript1.2 src="../css/iXs_Main.js"></SCRIPT>
<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("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 expoinfo"
if typeid>"" then sql=sql&" where typeid="&typeid&""
if keywords>"" then sql=sql&" and title 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="info.asp" method=post onsubmit="javascript:if(doSearch()==false) return false;"><td class="forumRowHighlight">
關鍵字:<input name="keywords" type="text" value="<%=keywords%>">
所屬類別:
<select name="typeid" size="1">
<%
set rs1=conn.execute("select * from expoinfotype")
do while not rs1.eof
response.write "<option value='"&rs1("id")&"'>"&rs1("type")&"</option>"&chr(13)+chr(10)
rs1.movenext
loop
rs1.close
%>
</select> <input type="submit" value="立刻查找" id=submit name=submit>
</td></form>
</tr>
</table>
<SCRIPT LANGUAGE='JavaScript' SRC='/js/search.js' TYPE='text/javascript'></script>
<!--#include file="../../inc/headpage.asp"-->
<Form name="search" method="POST" action="info.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="60%" align="left" class=bodytitle><font color="ff6600"><b>信息標題</b></font></td>
<td width="12%" align="center" class=bodytitle><font color="ff6600"><b>所屬類別</b></font></td>
<td width="14%" align="center" class=bodytitle><font color="ff6600"><b>發布日期</b></font></td>
<td width="7%" align="center" class=bodytitle><font color="ff6600"><b>修改</b></font></td>
<td width="7%" align="center" class=bodytitle><input name="submit2" type='submit' value='刪除'></td>
</tr>
<%
do while not rs.eof and rowcount > 0%>
<tr height="20">
<td align="left" class=forumRow> <a href="editinfo.asp?id=<%=rs("id")%>" target="_blank"><%=replace(rs("title"),keywords,"<font color=red>"&keywords&"</font>")%></a> <%if rs("tj")=1 then%><img src="../images/thanx.gif" alt="此條信息已設置推薦,點擊修改可重新設置推薦屬性!" width="19" height="19" align="absmiddle"><%end if%> <%if rs("picture")<>"nopicture.gif" then%><img src="../images/haveimg.gif" alt="包含標題圖片:<br><img src=/UploadFile/<%=rs("picture")%> border=1 width=220 height=150>" width="12" height="12" border="0">
<%end if%></td>
<td class=forumRow align="center">
<%
set rs5=conn.execute("select id,type from expoinfotype where id="&rs("typeid")&"")
response.write"<a href='info.asp?typeid="&rs5("id")&"'>"&rs5("type")&"</a>"
%></td>
<td width="113" align="center" class=forumRow><%=FormatDate(rs("dateandtime"),2)%> </td>
<td align="center" class=forumRow><a href="editinfo.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 name="button" type=button onClick="this.value=check(this.form)" value=" 全部選定 ">
</div></td>
</tr>
<tr height="20" bgcolor="#ffffff">
<td class=forumrowHighLight align="center" colspan="5"><b><%=listPages("info.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 [expoinfo] 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 + -