ASP导出EXCEL出现乱码
高手帮看下,ASP导出数据到EXCEL时出现乱码问题
<%
...
response.ContentType="application/vnd.ms-excel"
response.Charset="GB2312"
response.AddHeader "content-disposition","attachment;filename=" & exlFileName
response.Write tempHTML
...
%>
其中已经指定字符编码了,怎么还显示乱码啊? response.Charset="GB2312", "unicode", "UTF-8"都试过,还是出现乱码,不懂了,请问怎么解决啊?...在线等...