|
I am pulling data from an Access database into an aspx page. I have 3 fields specified as type Currency in Access. But when the DataAdapter pulls the data into the Dataset, the zeros are dropped.
For example, 37.40 in Access becomes 37.4 on my aspx page.
An amount such as 13.95 shows up as 13.95 as it should, so it's just the trailing zeros that are being dropped.
How can I get this data to show up properly in my DataSet?
Thanks
-Tom
|