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

📄 companyindex.jsp

📁 (Java+SQL)-大型企业JAVA的ERP系统
💻 JSP
字号:
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>

<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" > 
	<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<%	}
%>

<html>
<head>
<title>公司信息</title>
<link rel="stylesheet" href="../pub/style.css">
</head>
<%!String browseMode;%>
<%!String position;%>
<%!String curPage;%>
<%!String companyId;%>
<%
	browseMode = request.getParameter("browseMode");
	position = request.getParameter("position");
	curPage = request.getParameter("curPage");
	companyId = request.getParameter("companyId");
%>
<frameset rows="450,150"> 
  <frame src="CompanyList.jsp?browseMode=<%=browseMode%>&position=<%=position%>&curPage=<%=curPage%>">
  <frame src="CompanyAccountList.jsp?companyId=<%=companyId%>">
  <noframes>
  <body>
 </body>
  </noframes>
</frameset>
</html>

⌨️ 快捷键说明

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