I had this same problem so I created a function that converts a JavaScript date into a format that could be understood by SQL Server e.g.
var TRON = TRON || {};
// format a date into dd-mm-yyyy
// or mm-dd-yyyy cos of sql database
// saving dates in USA format
// @param {Date object|string} date
// @param {string} format
// @return {string} formattedDate
TRON.formatDate = function (date, format){
// if we get passed a date string convert it
// into an object
if(/Date/.exec(date)){
date = new Date(/[0-9]+/.exec(date) * 1);
} else if(typeof date == 'number'){
date = new Date(date);
}
var dd = date.getDate() > 9 ? date.getDate() : '0' + date.getDate(),
mm = date.getMonth() > 10 ? (date.getMonth() + 1) : '0' + (date.getMonth() + 1),
yyyy = date.getFullYear().toDoubleDigits(),
formattedDate;
if(format == 'usa'){
formattedDate = [mm, dd, yyyy].join('/');
} else if (format == 'system'){
// for inserting into sql db
formattedDate = [yyyy, mm, dd].join('-') + ' ' + [ date.getHours().toDoubleDigits(), date.getMinutes().toDoubleDigits(), date.getSeconds().toDoubleDigits() ].join(':');
} else if (format == 'utc'){
formattedDate = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds());
} else {
formattedDate = [dd, mm, yyyy].join('/');
}
return formattedDate;
};
$.post(url, { date: TRON.formatDate( jsDate, "system" ) });
db.Execute("INSERT INTO Table (date) VALUES (@0)", Request["date"]);
The rest of my JavaScript utility scripts are on BitBucket