I am having problems with date formatting for a website aimed at Polish Clients. When entering a calendar entry it is switching the month and the date. e.g it puts the entry in 7th September instead of 9th July.
The problem seems to be a datetime.parse statement as follows
DateTime.Parse(txtCalendarDate.Text)
This supposedly uses the current culture which is Polish. Polish has the day/month the right way round so why is it switching them?
Please assist.