[snip]
Is there a function in ASP that I can use to display 1234567 as
1,234,567 ?
[/snip]
The FormatNumber function
FormatNumber(expression,[, numdigitsafterdecimal[, includeleadingdigit[,
useparensfornegativenumber[, groupDigits]]]])
FormatNumber("1234567", 0, vbFalse, vbFalse, vbTrue)
HTH!
Jay