In my users setting I have a dropdown with all the GMT dates for the user to select.
In c#, how would I convert a datetime stored in the database to their GMT time?
The time stored in the database is the servers time.
feedback
|
|
For .NET 3.5+, you can store the system time zone identifier with the user (you can get those from
In .NET 2.0, you're limited to the older
| ||||
|
feedback
|
|
I take it you're storing the GMT difference for each user? I.e. 0 or +1 or -6, etc?
| |||||
feedback
|
|
Use System.DateTimeOffset instead of DateTime. IT includes all the functionality you need. | |||
|
feedback
|