⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 upborrow.jsp

📁 eclipse+struts+sqlserver 简单图书管理系统,内有文档
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -