views:

45

answers:

2

Within the web.config file i have the following, regarding encoding info, since the website is availiale only to Greece.

<globalization fileEncoding="windows-1253" requestEncoding="windows-1253" responseEncoding="windows-1253" culture="el-gr" uiCulture="el"/>

What changes should i implement if i decide to add the English version of the website too?

UPDATE:

1) The hosting server is not located in Greece.

2) Only the dynamically created text is displayed correctly. All other text is displayed as question marks.

+1  A: 

utf-8 should be sufficient shouldnt it?

mrwayne
Check what the page is encoded as. Visual Studio -> File -> Advanced Save Options (underneath save), it allows you to specify the file encoding.
mrwayne
A: 

You have also to check the page culture specification.

Paulo Santos