Can we display the local datetime to the User in MVC using Javascript?
I need to display the datetime received in CET to the local time of user by using javascript in a .NET MVC application. How can this be done? <table> <thead> <tr> <th>Date</th> </tr> </thead> <tbody> <tr> <td data-utc-time="@item.ScheduledTime?.ToUniversalTime().ToString("o")">@item.ScheduledTime.HasValue ? item.ScheduledTime.Value.ToUniversalTime()…