Remove Decimal Places From Currency Format

Last post 05-02-2008 6:03 PM by e2canoe. 26 replies.

Sort Posts:

  • Remove Decimal Places From Currency Format

    11-22-2006, 10:59 AM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89

    Does anoyone know how to remove the trailing zeros from a currency formated string:

    for example in the showad.aspx.c there is  a line which show the price of an item using this code:

    AdPriceLabel.Text = String.Format("{0:c}", ad.Price);

    if the value on the database table is 5 then it is diaplyed on the web page as:

     $5.00

     All the numbers in my datbase are whole numbers (no decimal places).

    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-22-2006, 12:40 PM
    Answer
    • Loading...
    • ubaid1900
    • Joined on 05-25-2005, 8:26 PM
    • Posts 140

    Inspect the Current Number format System.Threading.Thread.CurrentThread.CurrentCulture.NumberFormat.CurrencyDecimalDigits; You can achieve the desired result as follows.

    System.Globalization.NumberFormatInfo nfi = new System.Globalization.NumberFormatInfo();

    nfi.CurrencyDecimalDigits = 0;

    nfi.CurrencySymbol =

    "$";

    AdPriceLabel.Text =

    String.Format(nfi,"{0:c}", ad.Price);

     

    Hope it helped.

  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 2:41 PM
    • Loading...
    • ubaid1900
    • Joined on 05-25-2005, 8:26 PM
    • Posts 140
    Let us know if not resolved. Thanks
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks.
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that a
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that a global setting in say
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that a global setting in
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that a global setting in say the
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
  • Re: Remove Decimal Places From Currency Format

    11-27-2006, 3:25 PM
    • Loading...
    • tonsai
    • Joined on 09-06-2006, 3:40 PM
    • Posts 89
    that worked great thanks. is there any way to make that a global setting
    Custom Classifieds Site: http://tinyurl.com/3ybh5k
Page 1 of 2 (27 items) 1 2 Next >