devxlogo

Display Currency Fields in ASP

Question:
I am querying an Oracle field that comes back in the format of 25.5. Because this is a currency field, I’d like to manipulate it so that it shows $25.50 before I publish it out to the Web. How can I do this?

Answer:

Use the FormatCurrency function in VBScript.

strVar = "25.5"' -- the next line outputs $25.20, the 2 refers to' -- the number of decimal placesresponse.write FormatCurrency(strVar, 2)

FormatCurrency returns an expression formatted as a currency value using the currency symbol defined in the system control panel.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.