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