I have a jquery request to asp.net method which provides 2 date string params:
qltyStartDT = "Tue Oct 30 07:00:00 PDT 2012"
qltyEndDT = "Mon Nov 12 16:00:59 PST 2012"
I am trying to convert to sql ready date format am using:
DateTime.TryParseExact(qltyStartDT, "", CultureInfo.InvariantCulture, DateTimeStyles.None, out QSDT);
DateTime.TryParseExact(qltyEndDT, "", CultureInfo.InstalledUICulture, DateTimeStyles.None, out QEDT);
Trying to figure out what my date pattern should be? I would like to handle this is >net but if not doable I can try to parse out in JavaScript.