Re: html:errors does not display

2005-06-13 Thread Vincent
Hi, Does simple with no property specified works for you ? Cause I get a similar problem - using same Java code in JSP display the fields with errors, but does nothing. Thanks. Vincent. Song Wang wrote: Hello everyone, I cannot display , but if I add <% ActionErrors ae = ( ActionErrors)

Re: html:errors does not display

2005-06-13 Thread Andrew Tomaka
Song, I was having a similar problem using WSAD 5.0.0. Client side validation using the Validator component worked, but server side validation did not. Since WSAD included Struts 1.1(beta 2), I decided to update struts to the newest version. This seemed to correct the problem. If you need furt

html:errors does not display

2005-06-13 Thread Song Wang
Hello everyone, I cannot display , but if I add <% ActionErrors ae = ( ActionErrors) request.getAttribute( Action.ERROR_KEY); boolean err = false; if( ae != null) { Iterator iter = ae.properties(); while(iter.hasNext()){ System.out.println((String)iter.next());