
ASP, adding two variables
FormatNumber(Expression [,NumDigitsAfterDecimal [,IncludeLeadingDigit
[,UseParensForNegativeNumbers [,GroupDigits]]]])
=-=-=
Steve
-=-=-=
Quote:
> I'm trying to add to variables in ASP
> a= 15 + b=5
> I want the out put to write 15.00 but is just write 15 with out .00 how ca
i
> Get it to write the .00 my code looks like this
> Dima a, b
> a=15
> b=5
> a=a+b
> Response.Write a
> Thanks