22 lines
724 B
Plaintext
22 lines
724 B
Plaintext
|
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
||
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
|
||
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
|
||
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
|
||
|
<netui:html>
|
||
|
<head>
|
||
|
<title>
|
||
|
Web Application Page
|
||
|
</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>
|
||
|
New Web Application Page
|
||
|
</p>
|
||
|
<netui:form action="postback">
|
||
|
<netui:textBox dataSource="pageFlow.field1"/><br/>
|
||
|
<netui:textBox dataSource="pageFlow.field1"/><br/>
|
||
|
<netui:button>POST</netui:button>
|
||
|
</netui:form>
|
||
|
</body>
|
||
|
</netui:html>
|