I have a problem with decimal.ToString(\"C\") override. Basically what I wants to do is as follows:
decimal.ToString(\"C\")
CultureInfo usCulture = new CultureInfo(\"en
use this format string :
#,##0.00 $;#,##0.00'- $';0 $
decimal paid = Convert.ToDecimal(dr["TotalPaids"]); lblPaids.Text = paid.ToString("#,##0.00 $;#,##0.00'- $';0 $");