I am reading up on time zones, but I think that may be more than I need.
My homepage has a news article repeater, for which I have made a document type. The doc will hold title, blurb, author and publish date/time. They are all text fields, except the date/time, which is a calendar picker. I need to incorporate timezone.
Now, I'm toying with enabling the timezone functionality via System, but, since I expect that a news article will be entered manually much of the time, it may be overkill to try to bind the time zone display to the document, I think they'll just pick the right timezone manually.
Is there a way of exposing the time-zones so that that it can be chosen in or alongside the calendar picker?
Also, I am trying to format the timezone into the display as well, but I haven't figured that out.
<%# FormatDateTime(Eval("date_time"), "dddd, MMMM d, h:mm tt K") %>
The K is empty (probably because my date object has no timezone data in it.)
I suppose the most expedient solution to both of these thing is to simply provide a dumb text field, and have the site admin enter whatever they need... "EST", "CST", etc. that spits it, unprocessed onto the page.