I am creating a web application which needs to be hosted in France. With French regional settings, server collation and local timezone.
The main issue I am facing is the number format. In European/French styles the number format uses comma(,), instead of dot(.) for the decimal separator(Eg: 12,53(French) = 12.53 (US)). My development environment is following US culture.
What are the things to take care on server settings to handle this.
On SQL server it is storing dot(.) always, but I have to display comma(,) on screen.
How do I handle this.