前台:
<meta http-equiv="content-type" content="application/ms-excel; charset=UTF-8"/> 或换成gb2312
后台:
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.ContentType = "application/msexcel";
Response.AddHeader("content-Disposition", "attachment;fileName=" + System.Web.HttpUtility.UrlEncode("中文件名", System.Text.Encoding.UTF8) + ".xls");