<%@ page pageEncoding = "Shift_JIS" %>
<%@ page contentType="text/html; charset=Shift_JIS" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<html><body>
<html:form action="/validate_view2" method="post">
<html:errors header="false" footer="false" property="userId" />
ID <html:text property="userId" size="15" maxlength="15" errorStyle="background-color:red" />
<br><br>
<html:errors header="false" footer="false" property="userName" />
氏名 <html:text property="userName" size="15" maxlength="15" errorStyle="background-color:red"/>
<br><br>
<html:submit property="submit">送信</html:submit>
</html:form>
</body></html>
|