devxlogo

Format Dates in Active Server Pages Using the Locale Identifiers

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.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

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.

About Our Journalist