1

剣道カレンダーを使用していますが、カレンダーで特定の日付を強調表示する必要があります。剣道のデモによると、強調表示される日付は次のように JavaScript で書かれています。

 dueDates= [
                           +new Date(today.getFullYear(), today.getMonth(), 8),
                           +new Date(today.getFullYear(), today.getMonth(), 12),
                           +new Date(today.getFullYear(), today.getMonth(), 24),
                           +new Date(today.getFullYear(), today.getMonth() + 1, 6),
                           +new Date(today.getFullYear(), today.getMonth() + 1, 7),
                           +new Date(today.getFullYear(), today.getMonth() + 1, 25),
                           +new Date(today.getFullYear(), today.getMonth() + 1, 27),
                           +new Date(today.getFullYear(), today.getMonth() - 1, 3),
                           +new Date(today.getFullYear(), today.getMonth() - 1, 5),
                           +new Date(today.getFullYear(), today.getMonth() - 2, 22),
                           +new Date(today.getFullYear(), today.getMonth() - 2, 27)
                        ];

dueDates の値は次のとおりです。

[1357583400000,1357929000000,1358965800000,1360089000000,1360175400000,
1361730600000,1361903400000,1354473000000,1354645800000,1353522600000,1353954600000]

コードビハインドに日付リストがあり、上記の形式の日付に変換する必要があります。親切に助けてください。

4

1 に答える 1

1

この番号はfrom ( Unix Epoch1357583400000 )のように見えます。それを.Net DateTimeに戻すには。できるよ:TotalMilliSeconds01-01-1970

DateTime dt = new DateTime(1970, 1, 1).AddMilliseconds(1357583400000);

そして、次のようになります: {07/01/2013 6:30:00 PM}as DateTime

于 2013-01-17T06:16:53.097 に答える