I have a date in JavaScript and its value is coming like this
Fri Apr 01 2011 05:00:00 GMT+0530 (India Standard Time) {}
Now what is the best way to convert th
Convert JavaScript into UTCString from Client side:
var testDate = new Date().toUTCString();
Parse it from C# code (you can fetch js date through webservice call).
DateTime date = DateTime.Parse(testDate);