pagecontents.jsp
来自「A Java web application, based on Struts 」· JSP 代码 · 共 58 行
JSP
58 行
<%@ taglib uri="/tags/struts-bean" prefix="bean" %><%@ taglib uri="/tags/struts-html" prefix="html" %><%@ taglib uri="/tags/struts-logic" prefix="logic" %><html:form action="SaveRoute" focus="description"> <html:hidden property="id"/> <tr> <th width="75%" align="left"> <bean:message key="EditRoutePage.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="Route.description.label"/>: </td> <td align="left"> <html:text property="description" size="30" maxlength="30"/> </td> <td align="left"> <html:checkbox property="default" value="true"/> <bean:message key="Route.default.label"/> </td> </tr> <tr> <td align="left" colspan="3"> <bean:message key="Route.comments.label"/>: </td> </tr> <tr> <td colspan="3"> <html:textarea property="comments" rows="5" cols="50"/> </td> </tr> </table> </td> </tr> </table> </td> </tr></html:form>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?