16 lines
434 B
Plaintext
16 lines
434 B
Plaintext
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui" %>
|
|
|
|
<html>
|
|
<head>
|
|
<title>ActionForm Validation Test</title>
|
|
</head>
|
|
<body>
|
|
<netui:form action="testValidate">
|
|
Text: <netui:textBox dataSource="actionForm.text"/>
|
|
<netui:button type="submit">Submit</netui:button>
|
|
</netui:form>
|
|
<netui:errors />
|
|
</body>
|
|
</html>
|