way to format a date property inside an iterate loop?

2003-06-25 Thread Nielsen, Jim
Hi, Is there a simple way to format a date property inside an iterate loop? The property is a long value. I want to have the display the date in a localize format. Not having much luck searching for examples. Thanks in advance for any advice. logic:iterate id=FileInfo indexId=ix

Re: way to format a date property inside an iterate loop?

2003-06-25 Thread Rick Reumann
On Wed, 2003-06-25 at 09:47, Nielsen, Jim wrote: Hi, Is there a simple way to format a date property inside an iterate loop? The property is a long value. I want to have the display the date in a localize format. Not having much luck searching for examples. You could see if the JSTL fmt

Re: way to format a date property inside an iterate loop?

2003-06-25 Thread Kris Schneider
With JSTL: jsp:useBean id=date class=java.util.Date/ %-- in loop --% c:set target=${date} property=time value=${longValue}/ fmt:formatDate value=${date} .../ Quoting Rick Reumann [EMAIL PROTECTED]: On Wed, 2003-06-25 at 09:47, Nielsen, Jim wrote: Hi, Is there a simple way to format a