📄 productlocationdetail.jsp
字号:
<jsp:useBean id="location" class="src.wuyang.ProductLocation" scope="page"/>
<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>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../pub/style.css">
</head>
<body>
<%
String locationId = request.getParameter("locationId");
System.out.println("*detail first locationId "+locationId);
locationId = new String(locationId.getBytes("8859_1"));
System.out.println("*detail second locationId "+locationId);
String wearhouseId = request.getParameter("wearhouseId");
System.out.println("*detail first wearhouseId "+wearhouseId);
wearhouseId= new String(wearhouseId.getBytes("8859_1"));
System.out.println("*detail first wearhouseId "+wearhouseId);
location.load(locationId,wearhouseId);
%>
<form method="POST" action="ProductLocationProcess.jsp">
货位编码:<%=location.getLocationId()%><input type="hidden" name="locationId" value="<%=location.getLocationId()%>" >
<br>
货位描述:<input type="text" name="locationDesc" value="<%=location.getLocationDesc()%>">
<br>
仓库编码:<%=location.getWearhouseId()%><input type="hidden" name="wearhouseId" value="<%=location.getWearhouseId()%>">
<p>
<input type="submit" name="update" value="修改" >
<input type="reset" name="reset" value="重置" >
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -