departmentform.jsp

来自「采用jsp编写的企业计量设备管理系统」· JSP 代码 · 共 40 行

JSP
40
字号
<%@ include file="/common/taglibs.jsp"%><title><fmt:message key="departmentDetail.title"/></title><content tag="heading"><fmt:message key="departmentDetail.heading"/></content><html:form action="editDepartment" method="post" styleId="departmentForm"    focus="" onsubmit="return validateDepartmentForm(this)"><table class="detail">    <tr>        <th>            <pgmm:label key="departmentForm.name"/>        </th>        <td>            <html:text property="name" styleId="name"/>            <html:errors property="name"/>        </td>    </tr>    <tr>        <td></td>        <td class="buttonBar">                        <html:submit styleClass="button" property="method" onclick="bCancel=false">                <fmt:message key="button.save"/>            </html:submit>            <html:submit styleClass="button" property="method"                 onclick="bCancel=true; return confirmDelete('Department')">                <fmt:message key="button.delete"/>            </html:submit>            <html:cancel styleClass="button" property="method" onclick="bCancel=true">                <fmt:message key="button.cancel"/>            </html:cancel>        </td>    </tr></table></html:form><html:javascript formName="departmentForm" cdata="false"    dynamicJavascript="true" staticJavascript="false"/><script type="text/javascript"     src="<html:rewrite page="/scripts/validator.jsp"/>"></script>

⌨️ 快捷键说明

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