From: "Mick Knutson" <[EMAIL PROTECTED]> > <bean:define id="lastPinChangeDate" name="consumerValidatorForm" > property="consumerActivity.lastPinChangeDate"/>
> <c:set var="lastPinChangeDate" > value="${consumerValidatorForm.consumerAct.lastPinChangeDate}"/> > [<c:out value="${lastPinChangeDate}"/>] The <bean:define> tag has the equivalent of: lastPinChangeDate = form.getConsumerActivity().getLastPinChangeDate(); The <c:set> has lastPinChangeDate = form.getConsumerAct().getLastPinChangeDate(); My guess is that the former is correct, (with Activity spelled out) but then you overwrite lastPinChangeDate with blank when <c:set> can't find the 'consumerAct' property. -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]