?? companyindex.jsp
字號(hào):
<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>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -