Okay I know this must be easy, but I just can't seem to get it to work.
I just want to display the time a particular page was displayed.
My component has this:
CurrentTimestamp : WOString {
value = currentTimestamp;
dateformat ="%m/%d/%y %H:%M";
}
When currentTimestamp returns a new NSTimestamp I get GMT, which is
what I expected.
But when I return an NSTimestamp create like so:
GregorianCalendar calendar = new GregorianCalendar();
calendar.setTime(new NSTimestamp());
NSTimestamp timestamp = new NSTimestamp(calendar.getTimeInMillis(),
TimeZone.getTimeZone("America/Chicago"));
return timestamp;
I still get GMT.
What fundamental thing am I missing or doing wrong?
Dave
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com
This email sent to arch...@mail-archive.com