We are using the following js lib from Microsoft https://ajax.aspnetcdn.com/ajax/4.0/1/MicrosoftAjax.js

var datetimehigh = new Date(2011,01,12,14,45,55,596);

var sDate =  datetimehigh.format("dd/MM/yyyy HH:mm:ss sss");

I cannot get the millisecond part to work.Note that format comes from Microsoft's Mvc Ajax lib.

link|improve this question

75% accept rate
Have you tried capital S for the milliseconds part? – jakeclarkson Feb 9 at 14:45
did you try "l" (lowercase L) – A.B.Cade Feb 9 at 14:49
feedback

1 Answer

up vote 2 down vote accepted

It's indicated by an f:

"dd/MM/yyyy HH:mm:ss fff"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.