Forums
This topic is locked
Currency Format
Posted 24 Aug 2004 14:21:53
1
has voted
24 Aug 2004 14:21:53 Mashkur Alam posted:
HiHow can I format currency price (GBP) in DWMX?
Babu
Edited by - babui on 24 Aug 2004 14:25:46
Replies
Replied 09 Dec 2005 13:56:04
09 Dec 2005 13:56:04 chrisef70 fenn replied:
Well, you'll be glad to know that this is relatively simple to do.
If you can run a global.asa file on your server then place the following into your global.asa file to change the locale settings throughout your site: -
'When a session starts on the server the following code will be run
Sub Session_OnStart
'Set the server locale
Session.LCID = 2057
End Sub
If you can not use a global.asa file, place following into the top of each ASP page you wish to change the locale settings on: -
<%
'Set the server locale
Session.LCID = 2057
%>
The LCID number above, 2057, will set the locale settings on the server to United Kingdom English, to change the locale to your own country you will need to use the LCID Chart at the bottom of this page to find your own locale ID number and then replace 2057 with your own LCID number.
This was taken from:
www.webwizguide.info/asp/faq/date_time_settings.asp
all the best
If you can run a global.asa file on your server then place the following into your global.asa file to change the locale settings throughout your site: -
'When a session starts on the server the following code will be run
Sub Session_OnStart
'Set the server locale
Session.LCID = 2057
End Sub
If you can not use a global.asa file, place following into the top of each ASP page you wish to change the locale settings on: -
<%
'Set the server locale
Session.LCID = 2057
%>
The LCID number above, 2057, will set the locale settings on the server to United Kingdom English, to change the locale to your own country you will need to use the LCID Chart at the bottom of this page to find your own locale ID number and then replace 2057 with your own LCID number.
This was taken from:
www.webwizguide.info/asp/faq/date_time_settings.asp
all the best