<%@ page pageEncoding = "Shift_JIS" %>
<%@ page contentType="text/html; charset=Shift_JIS" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<html><body>
<B>★全件エラー表示</B>
<BR><BR>
<!-- 全てのエラーメッセージを表示する -->
<html:errors/>
<BR><hr><BR>
<B>★個別エラー表示</B>
<html:form action="/validate_view" method="post">
<!-- プロパティ「userId」のエラーメッセージを表示する-->
<html:errors header="false" footer="false" property="userId" />
ID <html:text property="userId" size="15" maxlength="15" />
<br><br>
<!-- プロパティ「userName」のエラーメッセージを表示する-->
<html:errors header="false" footer="false" property="userName" />
氏名 <html:text property="userName" size="15" maxlength="15" />
<br><br>
<html:submit property="submit">送信</html:submit>
</html:form>
</body></html>
|