I am wanting my label to show what the total price of a product is after discount. My label does show the total price after the discount but I can't figure out how to add 2 decimal places to the final price. For example if the total price after a discount is $90 I would like my label to show $90.00. I can only figure out how to display the price without decimals.
lblTotalPrice.Text = "$" + Convert.ToString(totalPrice);