M
Matija Brnetic
I am having problems with displaying central european letter(croatian) in my
ASP.NET project, how can i fix that ?
thnx
ASP.NET project, how can i fix that ?
thnx
Steve said:Have you tried setting it to use unicode?
Here's more info on the subject:
http://msdn.microsoft.com/library/d...en-us/cpguide/html/cpconencodingbasetypes.asp
Also, you might adjust the Globalization section of your web.config.
Try changing it to something more like this:
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
<globalization
fileEncoding="iso-8859-1"
requestEncoding="iso-8859-1"
responseEncoding="iso-8859-1"
/>
</system.web>
</configuration>