I have built a dynamic form system, that accepts types of textfields, dropdowns and datetimes.
The form answers are also dynamic, everything is stored as text, or a text version of the id to the dropdown answer.
For datetimes, I want to know what the best format to serialise a c# datetime to text is, purely to use for seralisation. I already have to and from Unix tics extension working, which I could use for this as well as my javascript calls. But I feel there is a better option.
Obviously DateTime.Parse will be used on the way back, but what to use on the way out?