Personally, I record all the dates and times in my databases as UTC and convert them to local time when I need to display them. That way no matter where my code gets moved and no matter what timezone the computer is configured for, I always display the right time. It also prevents two computers running on two different timezones from inserting datetimes into the database in their own local time and really messing things up.
Robert