As far as I understand your question.
You want to display the currency format depending on the culture.
Every time you do some cultural things, .NET looks at Thread.CurrentThread.CurrentCulture and Thread.CurrentThread.CurrentUICulture .
You can set the desired culture in ASP.NET in the global.asax BeginRequest method.
protected void Application_BeginRequest() { var ci = CultureInfo.GetCultureInfo("en-US");
dknaack
source share