GHeiner
Posts: 1
|
| Posted: 11/06/2005, 4:27 AM |
|
I uses euro signs to format numbers (€ # ###0.00). When is save the ccp page the actomatically generated code will replace the euro sign with and ?. and the block of code will be excluded from automatically regeneration.
It has probely something to do with the file encoding and/.or HTML encoding. But i cant get it rigth.
Has some the answer for me.
_________________
Gerard Heiner |
 |
 |
dataobjx
Posts: 181
|
| Posted: 11/16/2005, 2:42 PM |
|
Does this help?
'The LCID property uses the location identifier number to access information
'on display format issues, such as currency, date, and time, that are specific
'to a location or region. The location identifier number uniquely defines a
'geographic location or region. For example, the location identifier number
'for France is 1036.
'Example demonstrates setting the locale to British English and using the VBScript
'FormatCurrency method to display the value 125 as currency with the £ symbol
'Session.LCID = 2057
'Dim curNumb
'curNumb = FormatCurrency(125)
'Response.Write (curNumb)
'Rem this line out if located within the USA.
'One resource having a listing of LCID's is located at the URL below;
'http://www.123hostnow.com/articles/LCID.asp?LCID=7177
'Session.LCID = 7177 'South Africa
'Session.LCID = 3081 'Australia
'Session.LCID = 1036 'France
'Session.LCID = 2057 'UK
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
|