Hi!
I have a question about how to format a value to a currency. I have tried this:
var dwCurrency = new Dynamicweb.eCommerce.International.Currency("DKK"); template.SetTag("SmartPage:OrderLastYear.Total", dwCurrency.Format(1958.57));
But the last part: dwCurrency.Format() takes approx. 50 milliseconds, which seems to be unreasonable amount of time. I have a list of 50 orders, which should be outputted, but when formatting the currency it will take 2,5 second to output...
So how can I format the currency without having to worry about the performance?
Best regards, Anders