User1562886449 posted
Hello,
I have an application that formats dates as DD/MM/YYYY and it works ok locally for all dates in this format. However once I publish to Azure the model binding rejects any dates passed that have a day value above 12 e.g. 20/03/2017. So it would appear to
see this as a US date and is therefore invalid
I added the following to my web config but this still does not seem to work.
<system.web>
<globalization uiCulture="en-GB" culture="en-GB" />
</system.web>
Is there some setting in Azure that I have over looked.
Thanks
Deborah