when I try to send german character to the server, instad of correct I got some wird characters. I use mvc2 and jquery 1.8.1
I try to send this way
function changeFileName(value, selection, oppId, idForOkImg) {
alert(value);
$.getJSON('<%= Url.ActionOrm("ChangeTypeOfFile", "Opportunity")%>?fileName=' + value , null , function () {
displayUploadedFiles(idForOkImg);
});
}
value which i pass is word “Prüfung”
and on the server side I recieve “Pr�fung”, this problem exists on Internet explorer and Firefox, on chrom all is fine.
Encode it like this:
In c#: