Hi Experts,
I want to show my string always prefixed with $ sign even when someone changes its regional settings.
When I change my regional settings to Format English (India) it starts showing Rs( ?) Symbol.
Code I have used.
decimal Cdcm= 1921.39m;
string html = String.Format("Order Total: {0:C}", Cdcm);
retuen html
Return FormatCurrency(IIf(Cdcm = Decimal.MinValue, 0.0, Cdcm))
Please help.
Thanks,
Rahul
Go to the complete details ...