23 lines
737 B
Plaintext
23 lines
737 B
Plaintext
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
|
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
|
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
|
|
|
|
|
|
<netui:html>
|
|
<head>
|
|
<netui:base/>
|
|
</head>
|
|
<body>
|
|
<h3>JSP Sees Shared Flow</h3>
|
|
|
|
<netui:anchor action="defaultSharedFlow1.sfAction1">defaultSharedFlow1.sfAction1 (anchor)</netui:anchor>
|
|
|
|
<netui:form action="defaultSharedFlow2.sfAction2">
|
|
<netui:button value="defaultSharedFlow2.sfAction2 (form)"/>
|
|
</netui:form>
|
|
</body>
|
|
</netui:html>
|
|
|
|
|