body.asp

来自「OFFICE办公自动化」· ASP 代码 · 共 38 行

ASP
38
字号
<!--#include file="inc/Secure.asp"-->
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/const.asp"-->

<%
set oRsRight=server.createobject("ADODB.RecordSet")
sql="select * from tbioaRoleRights where TypeNumber='"&request("id")&"' and FileName<>'' and mod<>'X' and number in ("&getRights()&"0)"
oRsRight.open sql,oConn,1,1
if not oRsRight.eof then
	bodyurl=oRsRight("FileName")
else
	bodyurl="office/OfficeMain.asp"
end if
oRsRight.close
set oRsRight=nothing
%>

<html>

<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<link rel="stylesheet" href="css/index.css" type=text/css>
<title><%=Corp%>-内部办公系统</title>
</head>
	<frameset name="FrmBody" cols="0,173,8,*" framespacing="0" frameBorder="no" bordercolor="#C7E1F4">
    <frame name="hidframe" src="UntitledFrame-1" name="left" noresize>
    <frame name="FrmMenu" noresize scrolling="yes" src="menu.asp?id=<%=request("id")%>" target="FrmMain">
		<frame name="FrmButtom" noresize scrolling="no" src="html/button.html" target="FrmMain">
    <frame name="FrmMain" noresize src="<%=bodyurl%>" target="FrmMain">
  </frameset>
  <body>
  <p>此网页使用了框架,但您的浏览器不支持框架。</p>
  </body>
  </noframes>
</frameset>

</html>
<!-- #include file="inc/conn_close.asp" -->

⌨️ 快捷键说明

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