My Windows web application server is set at UTC so there is no indication of DST or not on the timezone selection UI. So when my c# code is running on that server, DateTime.Now.IsDaylightSavingTime()
always returns False. Is there a way to check to see if a particular time zone (i.e. Eastern Time) is currently in DST or not?
thanks.