Here is my problem. I have a site in ASP.NET/C# that receives some data through GET / POST
This is "user-filled" data, but not through a web page, this is the software that communicates with my server.
The problem is that this software is sending data encoded in ISO-8859-1 (so the cafe will be sent to Caf% E9) and the rest of my Unicode SW / DB
Also, the data becomes completely crippled, which makes it impossible to restore what was sent: /
What would be the best way to handle this?
I tried setting Request.ContentEncoding (before reading), but it didn't help.
Jamesp
source
share