I am using the ASP.Net Commerce Starter kit 1.1
On the Shopping cart page (Or for any page that displays a Money value) how can I present the user with a localized amount instead of USD? (Say, show the user's shoping cart value in EUROS instead...)
Here's my code that shows the user an amount but only in US dollars:
//Update Total Price Label
lblTotal.Text = String.Format( "{0:c}", cart.GetTotal(cartId));
I understand I would have to somehow get current exchange rates so the values are what the user expects when they go off to the Paypal page but is there a way to get the user's localization and automagically do the conversion for them? How are others implementing something like this?