upborrow.jsp

来自「eclipse+struts+sqlserver 简单图书管理系统,内有文档」· JSP 代码 · 共 36 行

JSP
36
字号
<%@ page language="java" pageEncoding="utf-8"%>
<%@ include file="/common/taglibs.jsp" %>
 
<html> 
	<head>
		<title>JSP for UpBorrowForm form</title>
	</head>
	<body><table width=800 align="center">
	     <tr>
	     <td>
	     <html:errors/></td></tr>
		<tr >
		<td align="center">
		<html:form action="/upBorrow">
		<logic:present name="borrows" scope="request">
           <logic:iterate id="show" name="borrows" scope="request">
                    <html:hidden property="id" name="show"/>
			用户编号:<html:text readonly="true" property="uid" name="show"/><br/>
			图书编号:<html:text readonly="true" property="bid"  name="show"/><br/>
			借书日期:<html:text readonly="true" property="dt_borrow"  name="show"/><br/>
			归还日期:<html:text readonly="true" property="dt_return"  name="show"/><br/>
			借书数量:<html:text readonly="true" property="number"  name="show"/><br/>
			未还数量:<html:text property="not_num"  name="show"/><br/>
			借书期限:<html:text property="days"  name="show"/><br/>
			  备&nbsp;&nbsp;&nbsp;&nbsp;注:<html:text property="remark"  name="show"/><br/>
			  <html:submit>还书</html:submit>
			  	</logic:iterate>
			</logic:present>
			</html:form>
		</td>
		</tr>
		</table>
	</body>
</html>

⌨️ 快捷键说明

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