I am making a web application, and I need a DateTime format that is both compatible with JS Date and .NET DateTime, which are outlined differently on the following two pages:
JS Format: http://blog.stevenlevithan.com/archives/date-time-format
.NET Format: http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo(v=vs.71).aspx
As you can see, they are similar, but not exactly the same. The one I would like to use in JS is "mmmm dS, yyyy, h:MM:ss TT", but there is no equivalent of this format in .NET much to my dismay. Is there any other format I could use that would work in both JS and .NET without any need of reformatting when passed between the two languages?