pagecontents.jsp

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

JSP
48
字号
<%@ taglib uri="/tags/struts-bean" prefix="bean" %><%@ taglib uri="/tags/struts-html" prefix="html" %><%@ taglib uri="/tags/struts-logic" prefix="logic" %><html:form action="SaveRunType" focus="description">	<html:hidden property="id"/>	<tr>		<th width="75%" align="left">			<bean:message key="EditRunTypePage.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 colspan="2">						<table border="1" width="100%">							<tr>								<td align="left">									<bean:message key="RunType.description.label"/>:								</td>								<td align="left" colspan="2">									<html:text property="description" size="30" maxlength="30"/>								</td>								<td align="left">									<html:checkbox property="default" value="true"/>									<bean:message key="RunType.default.label"/>								</td>							</tr>						</table>					</td>				</tr>			</table>		</td>	</tr></html:form>

⌨️ 快捷键说明

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