I have Dates coming back as a string and I'm displaying that on the Front End, how can I compare the dates to see which is earlier...these are just string not date objects
string one = "3/11/12"
string two = "3/13/12"
I know if they were date objects i could do getTime()
. Not in this case.