RE: FAQ? Archive?

2004-02-03 Thread SBrunning
Thanks, Kris. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 05:23 pm To: Tag Libraries Users List Subject: Re: FAQ? Archive? Archive: http://marc.theaimsgroup.com/?l=taglibs-user Also see:

Formatting (Gregorian)Calendar instances?

2004-02-03 Thread otisg
Hello, If I use java.util.Date with the following piece os JSTL, it works nicely. However, I need to format an instance of (Gregorian)Calendar. I used Google to try to find the answer, but found nothing. fmt:formatDate value=${myDate} var=mmdd type=date

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
try: fmt:formatDate value=${myCalendar.date} var=mmdd type=date pattern=-MM-dd/ that way you'd access the getDate method of the Calendar interface, that returns the equivalent java.util.Date instance -Original Message- From: otisg [mailto:[EMAIL

Re: Re: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread otisg
Muuuchos gracias! I didn't see that DategetTime() method in Calendar. Thanks, Otis On Tue, 3 Feb 2004, Brian Buckley ([EMAIL PROTECTED]) wrote: fmt:formatDatevalue=${myDate.time} var=mmdd type=date pattern=-MM-dd/ Note the .time. -Brian Hello, If

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Felix Velasco
ps i wrote too fast. It's myCalendar.time, not date, as Brian pointed. sorry -Original Message- From: Felix Velasco [mailto:[EMAIL PROTECTED] Sent: 03 February 2004 13:26 To: 'Tag Libraries Users List' Subject: RE: Formatting (Gregorian)Calendar instances? try: fmt:formatDate

RE: Formatting (Gregorian)Calendar instances?

2004-02-03 Thread Kris Schneider
I think it's actually: ${myCalendar.time} Quoting Felix Velasco [EMAIL PROTECTED]: try: fmt:formatDate value=${myCalendar.date} var=mmdd type=date pattern=-MM-dd/ that way you'd access the getDate method of the Calendar interface, that returns the

i/o taglib

2004-02-03 Thread Chris Daly
hi i've imported the Jakarta Project: IO Tag library: Tags for working with FTP, HTTP, HTTPS, XML-RPC and SOAP inot my app and its working fine, except that the url i am trying to request has relative images which are showing up as unfound. i am just using the io :request tag. should i use the

c:set vs. bean:define and %= % behavior question

2004-02-03 Thread Mark Menard
First I have been struggling with this for a while now. I'm also new to JSP having used XMLC for presentation in the past. I have the following page: 1: %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean % 2: %@ taglib uri=/WEB-INF/c.tld prefix=c % 3: 4: c:set var=var1 value=var1 scope=page /

Re: c:set vs. bean:define and %= % behavior question

2004-02-03 Thread Hans Bergsten
Mark Menard wrote: First I have been struggling with this for a while now. I'm also new to JSP having used XMLC for presentation in the past. I have the following page: 1: %@ taglib uri=/WEB-INF/struts-bean.tld prefix=bean % 2: %@ taglib uri=/WEB-INF/c.tld prefix=c % 3: 4: c:set var=var1