I'm using the following code to pass to my javascript code
sb.Append("start: new Date(" + Convert.ToDateTime(appointment.AppointmentDate).Subtract(new DateTime(1970, 1, 1)).TotalMilliseconds.ToString() + "),");
The problem is that it's not including the time along with the date. How can I include the time as well?
Thanks!