📄 pcwaste.jsp
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'cklogin.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body bgcolor="#ffffff">
<%
String drugID=request.getParameter("drugID");
String drugname=request.getParameter("drugname");
String counts=request.getParameter("counts");
%>
<center>
<h1>损益情况</h1>
<h5 align="left" > 登陆仓库:<bean:write name="ware"/> 用户:<bean:write name="name" /></h5>
<hr/>
<br/>
<table width="80%">
<tr>
<td>药品ID:<%=drugID%></td>
<td>药品名称:<%=drugname%></td>
<td>药品数量: <%=counts%> </td>
</tr>
</table>
<br/>
<form name="form1" action="pcwastAction.do?counts=<%=counts%>&drugID=<%=drugID%>" method="POST" ">
<table width="80%">
<tr>
<td width="15%" align="left">核对数量:</td>
<td width="5%"> </td>
<td width="80%" align="left">
<input type="text" name="hecounts"/>
</td>
</tr>
</table>
<br/>
<table width="80%">
<tr>
<td width="35%" align="left">损益原因:</td>
<td width="5%"> </td>
<td width="60%" align="left">
<textarea cols="65" rows="4" name="reason"></textarea>
</td>
</tr>
<tr>
<td width="35%" align="left">备注:</td>
<td width="5%"> </td>
<td width="60%" align="left"><textarea cols="65" rows="4" name="context"></textarea></td>
</tr>
</table>
<br/>
<input type="submit" name="submit" value="提交"/>
<input type="reset" value="重置"/>
<input name="fanhui" type="button" value="返回" onclick="window.location='pclbAction.do'"/>
</form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -