pagecontents.jsp

来自「A Java web application, based on Struts 」· JSP 代码 · 共 64 行

JSP
64
字号
<%@ taglib uri="/tags/struts-bean" prefix="bean" %><%@ taglib uri="/tags/struts-html" prefix="html" %><%@ taglib uri="/tags/struts-logic" prefix="logic" %><html:form action="SaveShoe" focus="description">	<html:hidden property="id"/>	<tr>		<th width="75%" align="left">			<bean:message key="EditShoePage.tableHeader"/>		</th>		<td width="25%" align="middle">			<html:submit property="save">				<bean:message key="ButtonLabel.save"/>			</html:submit>			<html:cancel>				<bean:message key="ButtonLabel.cancel"/>			</html:cancel>		</td>	</tr>		<tr>		<td colspan="2">			<table border="1" width="100%">				<tr>					<td align="left">						<bean:message key="Shoe.description.label"/>:					</td>					<td align="left" colspan="2">						<html:text property="description" size="30" maxlength="30"/>					</td>				</tr>				<tr>					<td align="left">						<bean:message key="Shoe.startDate.label"/>:					</td>					<td align="left">						<html:text property="startDate" size="10" maxlength="10"/>					</td>					<td align="left">						<html:checkbox property="default" value="true"/>						<bean:message key="Shoe.default.label"/>					</td>				</tr>				<tr>					<td align="left">						<bean:message key="Shoe.startMileage.label"/>:					</td>					<td align="left">						<html:text property="startMileage" size="6" maxlength="6"/>					</td>					<td align="left">						<html:checkbox property="retired" value="true"/>						<bean:message key="Shoe.retired.label"/>					</td>				</tr>				<tr>				</tr>			</table>		</td>	</tr></html:form>

⌨️ 快捷键说明

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