userprofile.jsp

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

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

<head>
    <title><fmt:message key="userProfile.title"/></title>
    <content tag="heading"><fmt:message key="userProfile.heading"/></content>
    <script type="text/javascript" src="<c:url value='/scripts/selectbox.js'/>"></script>
</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="userProfile.admin.add.message"/>
    </c:when>
    <c:when test="${param.from == 'list'}">
        <fmt:message key="userProfile.admin.message"/>
    </c:when>
    <c:otherwise>
        <fmt:message key="userProfile.message"/>
    </c:otherwise>
</c:choose>
  
<div class="separator"></div>
  
<jsp:include page="/WEB-INF/pages/core/user/userForm.jsp"/>

⌨️ 快捷键说明

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