we have an old asp intranet site with a search input field. Due to some changes, the searchapplication itself got redeveloped with asp.net and MVC4. So the old search form now for example submits to intranet/applications/search. And as long as I don't use the IE9 everybody is happy.
The problem occurs on german umlaute ä, ö, ü, ß etc. My visual studio debugger shows the following instead of the 2 umlaut:
The asp intranet site has a charset of:
<meta content="text/html; charset=iso-8859-2" http-equiv="Content-Type">
and the form has a accept-charset="UTF-8"
attribute. Maybe I miss some knowledge about en-/decoding in html. But I couldn't find any answer so far.
Here are some more parameters from my controllers BeginExecute