<%@ page contentType="text/html;charset=Windows-31J" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<html>
<body>
<f:view>
<h:form>
お名前:
<h:inputText value="#{UserName.name}">
<f:validateLength minimum="4"/>
</h:inputText>
<h:commandButton value="OK" action="success"/>
</h:form>
</f:view>
</body>
</html>
|