I run a web based report using Active Server Script. This report runs a stored procedure from an Oracle database.
I then place the fields returned from this query into an HTML table using the Response.Write function and the report is e-mailed to a distribution group.
Since the number of fields returned are on the high size, I use the tag in each cell in the table to reduce the font size and make the report fit easily into a normal monitor size.
The report runs perfectly 99.7%of the time. Every once in a great while, it will incorrectly report a number as missing a decimal point. For example it will display 200, when the correct number is 20.0. The underlying data is correct.
Removing the tag for that cell then reports the right number.
Ideas?