Mick wrote > I also can't seeem to get this to work: > I have an array of Location[] in a DynaForm. Then I want to see if there > are zero elements in that array then post a message but no message is > posting: > <logic:empty scope="request" property="userLocations" > name="locationListForm"> ... </logic:empty>
http://jakarta.apache.org/struts/userGuide/struts-logic.html#empty "This tag evaluates its nested body content only if the specified value is either absent (i.e. null), an empty string (i.e. a java.lang.String with a length of zero), or an empty java.util.Collection or java.util.Map (tested by the .isEmpty() method on the respective interface)." It doesn't say anything about arrays, are you sure it's meant to work with them? -- Wendy Smoak "BTW, Lucifer just called and he needs a pair of ice skates :-)" James Turner in struts-dev, voting to release Struts 1.1 Final

