Does the Format() function work in ASP?
I've got:dTotal is a variant but will contain money (double) values.Code:<%=Format(dTotal, "0.00") %>
So, dTotal might contain 2.5 and I'd like the Format() function to return "2.50" or it might contain 2351.101 and I'd want the Format() function to return "2351.10" and I'd tag a "£" sign on the front.
For some reason, everytime I try to use it I just getQuote:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'Format'
/stu/placeorder.asp, line 241
