Im having a display issue when I am showing decimal fields from a form on a page. Creator is removing the last 0 in the number.
The problem is that my decimal fields are set to 2 decimal points but they display with the wrong number of decimal points.
I want the number to display as follows: 45.00 or 45.50 or 45.20
Trouble is they display as follows instead:
: 45.0 or 45.5 or 45.2
Creator is cutting off the last 0. I want this zero to display.
How can i get the zero to show?
My page uses the following code to display the values:
<%for each i in rec.Add_Product
{
prodname = Products [ID == i.Product_Name];%>
<%=i.Price%>
<%}%>
Thanks