ASP LCID Property
Complete Session Object Reference
The LCID property sets or returns an integer that specifies a location or
region. Contents like date, time, and currency will be displayed according to
that location or region.
Syntax
| Parameter |
Description |
| LCID |
A locale identifier |
Examples
<%
response.write("<p>")
response.write("Default LCID is: " & Session.LCID & "<br />")
response.write("Date format is: " & date() & "<br />")
response.write("Currency format is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID=1036
response.write("<p>")
response.write("LCID is now: " & Session.LCID & "<br />")
response.write("Date format is: " & date() & "<br />")
response.write("Currency format is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID=3079
response.write("<p>")
response.write("LCID is now: " & Session.LCID & "<br />")
response.write("Date format is: " & date() & "<br />")
response.write("Currency format is: " & FormatCurrency(350))
response.write("</p>")
Session.LCID=2057
response.write("<p>")
response.write("LCID is now: " & Session.LCID & "<br />")
response.write("Date format is: " & date() & "<br />")
response.write("Currency format is: " & FormatCurrency(350))
response.write("</p>")
%>
Output:
Default LCID is: 2048
Date format is: 12/11/2001
Currency format is: $350.00
LCID is now: 1036
Date format is: 11/12/2001
Currency format is: 350,00 F
LCID is now: 3079
Date format is: 11.12.2001
Currency format is: öS 350,00
LCID is now: 2057
Date format is: 11/12/2001
Currency format is: £350.00
|
Complete Session Object Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|