bpage.jsp
来自「spring的WEB开发插件,支持多状态WEB开发」· JSP 代码 · 共 46 行
JSP
46 行
<%@ include file="includeTop.jsp" %>
<div id="content">
Sample B Flow
<hr>
Flow input was: ${input}<BR>
<c:if test="${!flowExecutionContext.rootFlowActive}">
<br>
Sample B is now running as a sub flow within Sample A. This means we can end Sample B and
return to the parent flow. We can do this using either:
<ul>
<table>
<tr>
<td>an anchor:</td>
<td>
<a href="<c:url value="/flow.htm?_flowExecutionId=${flowExecutionId}&_eventId=end"/>">
End Sample B
</a>
</td>
</tr>
<tr>
<td valign="top">or a form:</td>
<td>
<table>
<form action="flow.htm" method="post">
<tr>
<td class="buttonBar">
<input type="hidden" name="_flowExecutionId" value="${flowExecutionId}">
<input type="submit" name="_eventId_end" value="End Sample B">
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</ul>
</c:if>
<hr>
<form action="<c:url value="/index.html"/>">
<input type="submit" value="Home">
</form>
</div>
<%@ include file="includeBottom.jsp" %>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?