upbooks.jsp

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

JSP
38
字号
<%@ page language="java" pageEncoding="utf-8"%>
<%@ include file="/common/taglibs.jsp" %>
 
<html:html> 
	<head>
		<title>JSP for UpBooksForm form</title>
	</head>
	<body>
	<table width=800 align="center">
	     <tr>
	     <td><html:errors/></td></tr>
		<tr >
		<td align="center">
		   <html:form action="/upBooks" >
		   <logic:present name="books" scope="request">
           <logic:iterate id="show" name="books" scope="request">
		     图书编号: <html:text readonly="true" property="bid"  name="show" ></html:text>
			图书名称: <html:text property="bname" name="show"></html:text><br/>
			<br/>
			图书分类: <html:text name="show" property="bkind"/>
			图书作者: <html:text name="show" property="bauthor"/><br/>
			<br/>
			出 版 社: <html:text  name="show" property="bpublish"/>
			图书数量: <html:text  name="show" property="bnumber"/><br/>
			<br/>
			图书价格: <html:text  name="show" property="bprice"/>
			出版日期: <html:text name="show" property="bdt_publish"/><br/>
			</logic:iterate>
			</logic:present>
		<html:submit>更新</html:submit>
		</html:form>
		</td>
		</tr>
		</table>
	</body>
</html:html>

⌨️ 快捷键说明

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