please i have an site using grand node - now i need to save data with local time and date so i try
exercise.ExerciseDate = _dateTimeHelper.ConvertToUtcTime(exercise.ExerciseDate, DateTimeKind.Local);
but i got error - then i try:
exercise.ExerciseDate = _dateTimeHelper.ConvertToUtcTime(exercise.ExerciseDate, DateTimeKind.Utc);
it works - but are that is UTC Time or local Client Time ?
so please can i know how to save client time as UTC and then get it back as client time ? or how can i save it to server direct with the client time
thanks a lot .....