📄 locationstateindex.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">
<script language ="javascript" src='../pub/pub.js' type=text/javascript></script>
</head>
<%!String browseMode;%>
<%!String position;%>
<%!String curPage;%>
<%!String locationId;%>
<%!String wearhouseId;%>
<%!String productId;%>
<%
browseMode = request.getParameter("browseMode");
position = request.getParameter("position");
curPage = request.getParameter("curPage");
locationId = request.getParameter("locationId");
wearhouseId = request.getParameter("wearhouseId");
productId = request.getParameter("productId");
System.out.println("Index locationId ="+locationId);
System.out.println("Index productId ="+productId);
%>
<frameset rows="400,200">
<frame src="LocationStateList.jsp?browseMode=<%=browseMode%>&position=<%=position%>&curPage=<%=curPage%>&wearhouseId=<%=wearhouseId%>">
<frame src="UpdateLocationState.jsp?wearhouseId=<%=wearhouseId%>&locationId=<%=locationId%>&productId=<%=productId%>">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -