Reputation: 38713
Since I moved our Intranet to a new Server (Windows Server 2008 / IIS 7) I have a problem: instead of special characters such as à, è, ì, ò, ù, €... reversed question marks are stored in the database.
I have the same problem both in ASP.NET and PHP applications.
WHAT I ALREADY TRIED:
Please notice that with the old Server (Window Server 2003 / IIS 6) everything worked fine. And please notice that client-server applications work fine even now, so it's definitely a web applications problem only.
Any help would be appreciated, as I'm totally stuck! Thank you
Upvotes: 0
Views: 149
Reputation: 186
Some browser (specially older) doesn't recognize special chars directly
better store ascii code instead of special chars
e.g. instead of à store "à" in database
here are some links to convert special to ascii
Upvotes: 1