I want to send data from client and create it on server. So:
1) How can I get the total milliseconds count by JavaScript Date object?
2) How can I create .NET DateTime object by total milliseconds count?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
| show 1 more comment |
|
You will have to use AJAX for this. Once you send the
After this, Edit: using jQuery, posting the date is as simple as:
|
|||
|
|
|
|||||||||
|
alert( +new Date() );– RobG Jul 27 '11 at 7:27