📄 editor_ad.asp
字号:
<%@language=vbscript codepage=936 %>
<%
Option Explicit
Response.Buffer = True
'强制浏览器重新访问服务器下载页面,而不是从缓存读取页面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Dim ChannelID, strInstalldir, sql, rs, ModuleType
ChannelID = PE_CLng(Trim(request("ChannelID")))
'获取安装目录及设置fso
InstallDir = Application("InstallDir")
If Right(InstallDir, 1) <> "/" Then
strInstalldir = InstallDir & "/"
Else
strInstalldir = InstallDir
End If
Public Function PE_CLng(ByVal str1)
If IsNumeric(str1) Then
PE_CLng = CLng(str1)
Else
PE_CLng = 0
End If
End Function
If SystemDatabaseType = "SQL" Then
PE_True = "1"
PE_False = "0"
PE_Now = "GetDate()"
Else
PE_True = "True"
PE_False = "False"
PE_Now = "Now()"
End If
Public Function PE_CStr(ByVal str1, ByVal str2)
If IsNull(str1) Then
PE_CStr = str2
Else
PE_CStr = CStr(str1)
End If
End Function
%>
<!-- #include File="../conn.asp" -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="Keywords" content="动易网络科技有限公司,动易网站管理系统,动易,动力文章系统,文章系统,动力,整站系统,系统,网站制作,网站,设计,网页设计制作,软件,帮助,系统帮助,动易帮助,支持,安装帮助">
<title>网站管理系统--标签导航</title>
</head>
<body leftmargin="0" rightmargin="0"topmargin="0">
<!-- ******** 菜单效果开始 ******** -->
<table width="100%" border="0" cellspacing="0" cellpadding="4" align="center">
<tr>
<td align="center" bgcolor="#0066FF"><b><font color="#ffffff">网站管理系统--标签导航</font></b></td>
</tr>
</table>
<table width="90%" border="0" cellspacing="0" cellpadding="2" align="center">
<tr>
<td height="50" valign="top" background="images/left_tdbg_01.gif">
<style rel=stylesheet type=text/css>
td {
FONT-SIZE: 9pt; COLOR: #000000; FONT-FAMILY: 宋体,Dotum,DotumChe,Arial;line-height: 150%;
}
INPUT {
BACKGROUND-COLOR: #ffffff;
BORDER-BOTTOM: #666666 1px solid;
BORDER-LEFT: #666666 1px solid;
BORDER-RIGHT: #666666 1px solid;
BORDER-TOP: #666666 1px solid;
COLOR: #666666;
HEIGHT: 18px;
border-color: #666666 #666666 #666666 #666666; font-size: 9pt
}
.favMenu {
BACKGROUND: #ffffff; COLOR: windowtext; CURSOR: hand;line-height: 150%;
}
.favMenu DIV {
WIDTH: 100%;height: 5px;
}
.favMenu A {
COLOR: windowtext; TEXT-DECORATION: none
}
.favMenu A:hover {
COLOR: windowtext; TEXT-DECORATION: underline
}
.topFolder {
}
.topItem {
}
.subFolder {
PADDING: 0px;BACKGROUND: #ffffff;
}
.subItem {
PADDING: 0px;BACKGROUND: #ffffff;
}
.sub {
BACKGROUND: #ffffff;DISPLAY: none; PADDING: 0px;
}
.sub .sub {
BORDER: 0px;BACKGROUND: #ffffff;
}
.icon {
HEIGHT: 18px; MARGIN-RIGHT: 5px; VERTICAL-ALIGN: absmiddle; WIDTH: 18px
}
.outer {
BACKGROUND: #ffffff;PADDING: 0px;
}
.inner {
BACKGROUND: #ffffff;PADDING: 0px;
}
.scrollButton {
BACKGROUND: #ffffff; BORDER: #f6f6f6 1px solid; PADDING: 0px;
}
.flat {
BACKGROUND: #ffffff; BORDER: #f6f6f6 1px solid; PADDING: 0px;
}
</style>
<SCRIPT type=text/javascript>
var selectedItem = null;
var targetWin;
document.onclick = handleClick;
document.onmouseover = handleOver;
document.onmouseout = handleOut;
document.onmousedown = handleDown;
document.onmouseup = handleUp;
document.write(writeSubPadding(10));
function handleClick() {
el = getReal(window.event.srcElement, "tagName", "DIV");
if ((el.className == "topFolder") || (el.className == "subFolder")) {
el.sub = eval(el.id + "Sub");
if (el.sub.style.display == null) el.sub.style.display = "none";
if (el.sub.style.display != "block") {
if (el.parentElement.openedSub != null) {
var opener = eval(el.parentElement.openedSub + ".opener");
ChangeFolderImg(opener,1)
hide(el.parentElement.openedSub);
if (opener.className == "topFolder")
outTopItem(opener);
}
el.sub.style.display = "block";
el.sub.parentElement.openedSub = el.sub.id;
el.sub.opener = el;
ChangeFolderImg(el,2)
}
else {
hide(el.sub.id);
ChangeFolderImg(el,1)
}
}
if ((el.className == "subItem") || (el.className == "subFolder")) {
if (selectedItem != null)
restoreSubItem(selectedItem);
highlightSubItem(el);
}
if ((el.className == "topItem") || (el.className == "topFolder")) {
if (selectedItem != null)
restoreSubItem(selectedItem);
}
if ((el.className == "topItem") || (el.className == "subItem")) {
if ((el.href != null) && (el.href != "")) {
if ((el.target == null) || (el.target == "")) {
if (window.opener == null) {
if (document.all.tags("BASE").item(0) != null)
window.open(el.href, document.all.tags("BASE").item(0).target);
else
window.location = el.href;
}
else {
window.opener.location = el.href;
}
}
else {
window.open(el.href, el.target);
}
}
}
var tmp = getReal(el, "className", "favMenu");
if (tmp.className == "favMenu") fixScroll(tmp);
}
function handleOver() {
var fromEl = getReal(window.event.fromElement, "tagName", "DIV");
var toEl = getReal(window.event.toElement, "tagName", "DIV");
if (fromEl == toEl) return;
el = toEl;
if ((el.className == "topFolder") || (el.className == "topItem")) overTopItem(el);
if ((el.className == "subFolder") || (el.className == "subItem")) overSubItem(el);
if ((el.className == "topItem") || (el.className == "subItem")) {
if (el.href != null) {
if (el.oldtitle == null) el.oldtitle = el.title;
if (el.oldtitle != "")
el.title = el.oldtitle + "\n" + el.href;
else
el.title = el.oldtitle + el.href;
}
}
if (el.className == "scrollButton") overscrollButton(el);
}
function handleOut() {
var fromEl = getReal(window.event.fromElement, "tagName", "DIV");
var toEl = getReal(window.event.toElement, "tagName", "DIV");
if (fromEl == toEl) return;
el = fromEl;
if ((el.className == "topFolder") || (el.className == "topItem")) outTopItem(el);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -