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

📄 checknews.asp

📁 zheng fu wang zhan gong neng qi quan
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="ConnUser.asp"-->
<!--#include file="config.asp"-->
<!--#include file="char.inc"-->
<!--#include file="chkuser.asp" -->
<!--#include file="ChkManage.asp" -->
<!--#include file="ChkURL.asp"-->
<%
if not(request.cookies(eChuang)("ManageKEY")="super" or request.cookies(eChuang)("ManageKEY")="typemaster" or request.cookies(eChuang)("ManageKEY")="bigmaster") then
	Show_Err("对不起,您的后台管理权限不够操作!")
	response.end
else
	if request.cookies(eChuang)("ManageKEY")<>"bigmaster" then
		response.redirect "CheckNews1.asp"
		response.end
	end if
	%>
<html><head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href=site.css rel=stylesheet>
<title><%=copyright%><%=version%>&nbsp;<%=ver%> - 文章审核_建站铺修正版_bbs.jzpu.com</title>
</head>
<body topmargin="0">
<!--#include file=Admin_Top.asp-->
<br>
<div align="center">
<table border="1" width="100%" bgcolor="<%=border%>" cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="<%=border%>">
<form method="POST" action="checknews1.asp">
<tr align="center">
	<td height="55" bgcolor="<%=m_top%>"><b>审 核 文 章</b></td>
</tr>
<tr bgcolor="#FFFFFF">
	<td align="center" height="197">
	<%
	set rs=server.CreateObject ("ADODB.RecordSet")
	rs.Source="select * from "& db_BigClass_Table &" order by BigClassorder"
	rs.Open rs.source,conn,1,1
	%>
		<p>请选择文章大类:
		<select size="1" name="BigClassid" onMouseOver="window.status='在这里选择要审核的文章大类';return true;" onMouseOut="window.status='';return true;">
	<%if rs.EOF then %>
			<option value="">暂无任何类别</option>
	<%else
		if request.cookies(eChuang)("ManageKEY")="super" or request.cookies(eChuang)("ManageKEY")="check" or request.cookies(eChuang)("ManageKEY")="typemaster" then
			while not rs.EOF
				%>
			<option value='<%=rs("BigClassid")%>'><%=trim(rs("E_BigClassName"))%></option>
				<%
				rs.MoveNext
			wend
		else
			while not rs.EOF
				if instr(rs("BigClassMaster"),Session("UserName"))>0 then
					%>
			<option value='<%=rs("BigClassid")%>'><%=trim(rs("E_BigClassName"))%></option>
					<%
				end if
				rs.MoveNext
			wend
		end if
	end if
	%>
		</select>
		</p>
		<p></p>
		<p>&nbsp;</p>
	</td>
</tr>
<tr>
	<td align="center" height="55" bgcolor="<%=m_top%>">
		<input type="submit" value="  下一步>>  " name="B1" onMouseOver="window.status='按这个按钮继续下一步';return true;" onMouseOut="window.status='';return true;" title='按这个按钮继续下一步'>
	</td>
</tr>
</form>
</table>
</div>
</body>
</html>
<!--#include file=Admin_Bottom.asp-->
<%
	rs.close
	set rs=nothing
	conn.close
	set conn=nothing
end if%>

⌨️ 快捷键说明

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