I\'m doing some Excel Exports on the ASP.NET Site. Everything works except of the Encoding. When I open it in Excel, it looks like this:
Eingabe Koste
I got same problem with spanish characters and solved it with this line of code.
response.ContentEncoding = System.Text.Encoding.Default ;
hope this helps