How do I convert the toLocalTimeString() to client computer actual local time.
time being passed (strDate) is : Monday, January 15, 2015 2:00:36 PM <--- Example
JavaScript on aspx page
function getLocaleDateTime(strDate)
{
var d = new Date(strDater);
var n = d.toLocaleTimeString();
alert(n);
}
Basically, I need to customize the strDate to change based on the user's computer time zone.
Go to the complete details ...