roaddefects.jsp

来自「Java的框架」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ include file="/common/taglibs.jsp"%>


<c:set var="datetimeformat"><fmt:message key="datetime.format"/></c:set>

<html>
	<head>
		<title><fmt:message key="roadDefects.title"/></title>
		<content tag="heading">
			<fmt:message key="roadDefects.heading"/>
		</content>
	</head>
	<body>	
	<c:set var="buttons">
		<button type="button" style="margin-right: 5px" onclick="window.location='<c:url value="/roadDefectForm.action"/>?method=add&from=list'">
  		<fmt:message key="button.add"/>
 		</button>
 		<button type="button" onclick="window.location='<c:url value="/mainPage.action" />'">
  		<fmt:message key="button.cancel"/>
 		</button>
	</c:set>

	<c:out value="${buttons}" escapeXml="false" />

	<jsp:include page="/WEB-INF/pages/prrm/roadDefect/roadDefectList.jsp"/>

	<c:out value="${buttons}" escapeXml="false" />
            
	</body>
</html>

⌨️ 快捷键说明

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