Posted on: 2/27/2015 11:39:46 PM | Views : 658

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 ...