preferenceprofile.jsp

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

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


<head>
    <title><fmt:message key="preferenceProfile.title"/></title>
    <content tag="heading"><fmt:message key="preferenceProfile.heading"/></content>
</head>

<!-- You could also add a message to the default decorator and not use this page. -->
<c:choose>

		<c:when test="${param.method == 'Add'}">
        <fmt:message key="preferenceProfile.admin.add.message"/>
    </c:when>
    <c:when test="${param.from == 'list'}">
        <fmt:message key="preferenceProfile.admin.message"/>
    </c:when>
    <c:otherwise>
        <fmt:message key="preferenceProfile.message"/>
    </c:otherwise>
</c:choose>

<div class="separator"></div>

<jsp:include page="/WEB-INF/pages/core/preference/preferenceForm.jsp"/>

⌨️ 快捷键说明

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