devxlogo

Format Dates in Active Server Pages Using the Locale Identifiers

The Active Server Pages Session object includes an under-used property called LCID. The LCID, or locale identifier, helps you format your ASP code to suit your target audience.For instance, Canada tends to use dd/mm/yy to format dates while Germany uses dd.mm.yy.Here’s some example ASP code that shows how the same date takes on a different look according to the LCID:

 <%USEnglish=1033EnglishCanada=4105German=1031thedate=date()Session.LCID=USEnglishResponse.Write thedate & "
"Session.LCID=EnglishCanadaResponse.Write thedate & "
"Session.LCID=GermanResponse.Write thedate & "
"%>

The code produces this output in the browser:

 4/25/9925/04/9925.04.99

For more information on language codes, check http://www.microsoft.com/OpenType/otspec/lcid-cp.txt.

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  How Engineering Leaders Spot Weak Proposals

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.