[Mono-list] Re: wrong encoding utf-8 - iso-8859-1

Robert Jordan robertj at gmx.net
Thu Oct 27 12:41:21 EDT 2005


Alois,

> after 3 days of unsucessfully work I decided today to write a question to this list. I've installed mono 1.1.8 with mod_mono on a linux server. Everything works fine but I'm not able to create any ASP.Net pages with german special chars.
> Here are the steps I'll follow:
> 
> 1. Create a asp.net page with following content in Borland Delphi 2005 and save it in utf-8 format:

I can reproduce that only if the aspx file is latin1. Are you sure
it's UTF8?

If the aspx is latin1, you should use these settings:

<configuration>
     <system.web>
         <globalization
             requestEncoding="utf-8"
             responseEncoding="utf-8"
             fileEncoding="iso-8859-1"/>

Rob



More information about the Mono-list mailing list