Re: The Pager in Provided by the jsptags.com

2004-07-03 Thread Jorge Salido
Put in web.xml a reference to your local .tld file, like this: /WEB-INF/pager-taglib.tld /WEB-INF/pager-taglib.tld And in your jsp header use the taglib-uri value: <%@ taglib uri="/WEB-INF/pager-taglib.tld" prefix="pg" %> It should work. BTW, I recall items that are goi

Re: [OT] Storing Birth Date

2004-06-29 Thread Jorge Salido
> My experience differs from Jorge. > A generic date should do well, and still give you all the date functions. The only > problem with storing dates as a number is doing date arithmetic ( say sending an > email to all people whose birthday is 5 days away) and things like that. It's not a > tr

Re: [OT] Storing Birth Date

2004-06-29 Thread Jorge Salido
I would certainly not use timestamps. A timestamp is certainly useful when you want to record current time (like a snapshot), but not past dates. And even then be aware of timestamps... And anyway, since timestamp also contains time data, it is not being efficient (at least by that standard). Cetai