beehive/netui/test/webapps/drt/web/miniTests/multiForms/Begin.jsp

17 lines
526 B
Plaintext

<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui" %>
<html>
<head>
<title>Multi Form Test</title>
</head>
<body>
<netui:form action="/buttonOne">
<netui:textBox dataSource="actionForm.name" /><br />
Input Value:<netui:span value="${actionForm.name}" /><br />
<netui:button type="submit" action="buttonOne" >Button One</netui:button>
<netui:button type="submit" action="buttonTwo" >Button Two</netui:button>
</netui:form>
<br />
Last Action: <netui:span value="${pageFlow.action}"/>
</body>
</html>