I am currently working on a c# web application with a backend sql server database. I have some issues around dates that I need to work out.
The application is hosted on web and database server in GMT time. The users are spread across 3 different time zones CEST, MSK, ALMT with the potential to have the site rolled out to other countries over time.
In code at present I use DateTime.Now and GETDATE() in SQL, and with the location of the servers, this is GMT.
My question is what form should the datestamps be stored in the database, when taking in to account the different cultures etc. Should it be utc dates? Of how should the following be handled? Is there a standard practice?