📄 foot.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%option explicit%>
<!--#include file="../Conn.asp"-->
<!--#include file="../SysCls/KS_CommonCls.asp"-->
<!--#include file="Inc/Session.asp"-->
<%
'===================================================================================================================
'软件名称:科汛网站管理系统
'当前版本:科汛网站管理系统 V2.2 SP2 Free
'Copyright (C) 2006-2008 Kesion.Com All rights reserved.
'产品咨询QQ:9537636,41904294
'技术支持QQ:111394,54004407
'程序版权:科汛网络
'程序开发:科汛网络开发组(总策划:林文仲)
'E-Mail :kesioncms@hotmail.com webmaster@kesion.com
'官方网站:http://www.kesion.com
'演示站点:http://test.kesion.com
'郑重声明:
' ①、免费版本请在程序首页保留版权信息,并做上本站LOGO友情连接,商业版本无此要求;
' ②、任何个人或组织不得在授权允许的情况下删除、修改、拷贝本软件及其他副本上一切关于版权的信息;
' ③、科汛网络保留此软件的法律追究权利
'===================================================================================================================
Dim KSCls
Set KSCls = New Foot
KSCls.Execute()
Set KSCls = Nothing
Class Foot
Private KSCMS
Private Sub Class_Initialize()
Set KSCMS=New CommonCls
End Sub
Private Sub Class_Terminate()
Set KSCMS=Nothing
End Sub
Public Sub Execute()
Response.Write "<html>"
Response.Write "<script language=""JavaScript"" src=""JS/SetFocus.js""></script>"
Response.Write "<link href=""Inc/ManageMent.css"" rel=""stylesheet"" type=""text/css"">"
Response.Write "<body leftmargin=""0"" topmargin=""0"" marginwidth=""0"" marginheight=""0"">"
Response.Write "<table width=""100%"" height=""28"" border=""0"" cellpadding=""0"" cellspacing=""0"" background=""Images/BottomBg.gif"">"
Response.Write " <tr>"
Response.Write " <td>"
Response.Write " <table width=""100%"" height=""100%"" border=""0"" cellpadding=""0"" cellspacing=""2"">"
Response.Write " <tr>"
Response.Write " <td align=""right"" width=""109""><div align=""center"" onClick=""ChangeLeftFrameStatu();"" title=""全屏/半屏"" id=""st"" style=""cursor:hand;""><font color=red>×</font> 关闭左栏</div></td>"
Response.Write " <td width=""578"" align=""center""><a href='CacheMain.asp' target='MainFrame'><font color=#ffffff>更新缓存</a></a> <a href='Refresh/RefreshIndex.asp' target='MainFrame'><font color=#ffffff>发布首页</a> <a href='Refresh/RefreshHtml.asp?ChannelID=1' target='MainFrame'><font color=#ffffff>发布文章</a> <a href='Refresh/RefreshHtml.asp?ChannelID=2' target='MainFrame'><font color=#ffffff>发布图片</a> <a href='Refresh/RefreshHtml.asp?ChannelID=3' target='MainFrame'><font color=#ffffff>发布下载</a> </td>"
Response.Write " <td width=""300"" align=""right"" style=""filter:shadow(Color=#000000,direction=180);font-weight:bolder"">版权所有 © 2006-2008 科汛网络"
'Response.Write (KSCMS.CopyRight)
'Set KSCMS = Nothing
Response.Write " </td>"
Response.Write " </tr>"
Response.Write " </table></td>"
Response.Write " </tr>"
Response.Write "</table>"
Response.Write "</body>"
Response.Write "</html>"
Response.Write "<SCRIPT language=javascript>"
Response.Write " var screen=false;i=0;width=0;"
Response.Write " function ChangeLeftFrameStatu()"
Response.Write " {"
Response.Write " if(screen==false)"
Response.Write " {"
Response.Write " parent.FrameMain.cols='0,*';"
Response.Write " screen=true;"
Response.Write " self.st.innerHTML = ""√ 打开左栏"""
Response.Write " }"
Response.Write " else if(screen==true)"
Response.Write " {"
Response.Write " parent.FrameMain.cols='165,*';"
Response.Write " screen=false;"
Response.Write " self.st.innerHTML = ""<font color=red>×</font> 关闭左栏"""
Response.Write " }"
Response.Write " }"
Response.Write "</SCRIPT>"
End Sub
End Class
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -