📄 复件 common.asp
字号:
<!--
文 件 名:common.asp
模块名称:立人信息系统公共界面
模块描述:立人信息系统公共界面
创建日期:2002-5-22
创 建 人:罗向东
-->
<!-- #include file="../inc/css.asp" -->
<%'如果主题未读取则读取主题
if Session("isloadcss")<>"yes" then
Session("isloadcss")="yes"
SET rs=Server.CreateObject("ADODB.RecordSet")
rs.ActiveConnection = Session("conn")
rs.CursorType = 1
rs.LockType = 1
rs.open("select * from csstable where vstylename='"+Session("Css")+"'")
for k=0 to rs.Fields.count-1
if rs.Fields(k).name<>"ID" then Session(rs.Fields(k).name)=rs.Fields(k).value
next
Session("cssid")=rs("ID")
rs.close
Session("mailaddroot")="../" & session("DataBase") & "/file/" '邮件附件路径
set rs=nothing
end if
%>
<html>
<head>
<title><%=session("Company")%>网络办公系统 </title>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
</head>
<script>
window.onunload=exitit
function exitit()
{
//window.location.href='../exit.asp'
}
</script>
<frameset name=mme border=0 framespacing=0 rows=80,20,*,20 frameborder=0 style="border:none">
<frame name=top marginwidth=0 marginheight=0 src="top.asp" frameborder=NO scrolling=no noresize>
<frame name=topmenu marginwidth=0 marginheight=0 src="topmenu.asp" frameborder=NO scrolling=no noresize>
<frameset name=mm id=mm border=0 framespacing=0 frameborder=0 cols="180,*">
<frame name="left" marginwidth=0 marginheight=0 src="left.asp" frameborder=no scrolling=no >
<frame name="main" frameborder=NO src="<%=session("StartPage")%>">
</frameset>
<frame name=bottom marginwidth=0 marginheight=0 src="bottom.asp" frameborder=NO scrolling=no noresize>
</frameset><noframes></noframes>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -