ASP : Numbers
Decimals
Round to no decimal or show set number of decimal places.
//drop decimals
response.write Round(DocSize/1000)
//force only 2 decimals
response.write(Round(24.13278,2))
Round to no decimal or show set number of decimal places.
//drop decimals
response.write Round(DocSize/1000)
//force only 2 decimals
response.write(Round(24.13278,2))