Format decimal as US currency
See the question and my original answer on StackOverflowMaybe:
<%=string.Format(CultureInfo.GetCultureInfo(1033), "{0:C}", Math.Round(netValue)) %>
(1033 is the locale id for the 'en-us' culture)
Maybe:
<%=string.Format(CultureInfo.GetCultureInfo(1033), "{0:C}", Math.Round(netValue)) %>
(1033 is the locale id for the 'en-us' culture)