I have four products on a form where the user will enter the prices for products. If they input a comma with the price (when the price > 999.99), the resulting form list sees the extra comma as a delimeter and my results are messed up:
My list entries look like the following:
PRICE equals 210.00, 500.00, 1,500.00, 300.00
When I process the list, my results are as follows:
210.00, 500.00, 1, 500.00
Can anybody give me ideas on the best way to handle this?
My list entries look like the following:
PRICE equals 210.00, 500.00, 1,500.00, 300.00
When I process the list, my results are as follows:
210.00, 500.00, 1, 500.00
Can anybody give me ideas on the best way to handle this?