This could be a simple question, but anyway,...
How could I format a number that has been returned using an ASP to two places of decimals by using VBScript?
Cheers...
Printable View
This could be a simple question, but anyway,...
How could I format a number that has been returned using an ASP to two places of decimals by using VBScript?
Cheers...
Code:FormatNumber(expression, 2)
I also use the following code:
format(expression, "#.00")
that works well
Not in VBScript it doesn't....