Re: How to check for error message in jsp

2006-06-22 Thread Scot Hale
I have found that avoiding all together helps keep your html in the JSPs instead of properties files. I used instead and ended up with something like this: * Then I also have something in a differnet markup

RE: How to check for error message in jsp

2006-06-22 Thread Givler, Eric
Couldn't you do something like this: Then you can interrogate that variable later as it contains the contents of the error for the field in question. If no errors, it is empty. // do something here // else do something else or use a -Original Me

Re: How to check for error message in jsp

2006-06-22 Thread Niall Pemberton
You can use the and tags to do this - probably combined with the "property" element for specific fields: http://struts.apache.org/struts-action/struts-taglib/tlddoc/logic/messagesPresent.html Niall On 6/21/06, Dhanasekaran Vivekanandhan <[EMAIL PROTECTED]> wrote: Hi, I am using in the jsp p