Our web application (.net/C#) formats currency amounts using amount.ToString("c"), shown localized to a few different regions.
Our French Candian users prefer all amounts to be the US format (123,456.99 vs. the default windows way for fr-CA of 123 456,99).
What is the best way to handle that ? Can I simply modify the regional settings on each webserver in windows for fr-ca? or do I need to create a custom culture?