I have this classic ASP code that gets data from a SQL Server database, and then creates an Excel file using Response.ContentType = "application/vnd.ms-excel"
.
However some of the data has names with accented characters. And when I view the data from the generated Excel file, the accented characters get replaced with other characters like Ã
or ©
, etc...
Is there a way I can get the accented characters to display properly?
Thanks