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

📄 appframe.jsp

📁 用java编写的网络架构程序
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="com.baosight.project.db.conn.ServerInfo"%>
<%
String url = "";
String pageId = ( String )session.getAttribute( "PAGE_ID" );
String pageName = ( String )session.getAttribute( "PAGE_NAME" );
String userId = ( String )session.getAttribute( "USER_ID" );
String userName = ( String )session.getAttribute( "USER_NAME" );
String gwh = ( String )session.getAttribute( "GWH" );
String role = ( String )session.getAttribute( "ROLE" );
String deptName = ( String )session.getAttribute( "DEPT_NAME" );
pageId = pageId == null? "" : pageId;
pageName = pageName == null? "采购管理系统" : pageName;
gwh = gwh == null? "" : "-" + gwh;
role = role == null? "" : "-" + role;
if( pageId.equals( "" ) )
	url = "blank.jsp";
else
	url = ServerInfo.GetDispBack( pageId );
%>
<html>
<head>
<title><%=pageId%>-<%=pageName%>--[<%=userId%>-<%=userName%><%=gwh%><%=role%>-<%=deptName%>]--</title>
<link href="../css/modality.css" rel="stylesheet" type="text/css">
  <script language=JavaScript src="../js/tools.js"></script>
</head>
<STYLE type="text/css">
BODY {
scrollbar-face-color:#A7A7A7;
scrollbar-highlight-color:#DFDFDF;
scrollbar-3dlight-color:#DBDCDC;
scrollbar-darkshadow-color:#000000;
scrollbar-shadow-color:#808080;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#DBDCDC;
}
a:link { color: #FFFFFF; text-decoration: none }
a:hover { color: #FF0000; text-decoration: none }
</STYLE>
<body leftmargin="2" topmargin="0"  scroll=no  style="border:none" onload="ShowDateApp()">
<table border="0" width="1010" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%" valign="top">
<jsp:include page ="appmenu.jsp" flush="true" />
    </td>
  </tr>

  <tr>
    <td width="100%" align="center">
      <jsp:include page ="<%=url%>" flush="true" />
    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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