Hello Everybody
Here is my problem. I have a website in ASP.NET / C# which receives some data via GET/POST
This is "user filled" data, but not through a web page, it's a software that contacts my server.
Problem is, this software is sending data encoded in ISO-8859-1 (so Café would be sent as Caf%e9 ) and the rest of my SW/DB is Unicode
Also the data gets completely mangled, making recovery of what has been sent impossible :/
What would be the best way to deal with this?
I tried setting Request.ContentEncoding (before reading), but no avail.