In my class, I have a property:
public virtual DateTime Date { get; set; }
What does "12/31/2012 12:00:00 AM" by default with the culture set to "en-CA" and "12/31/2012 12:00:00 AM" if the culture is "en" -US " .
JQuery validation works fine in "en-US", but in "en-CA" complains, "Date must be date."
I think the solution uses the jQuery library for globalization. I just donβt know how to do this for ASP.Net General Date Long Time ("G") Format Specifier . Any ideas?

source share