标题:[求助]导入excel出现的问题
取消只看楼主
leisky
Rank: 1
等 级:新手上路
帖 子:253
专家分:0
注 册:2006-5-22
结帖率:100%
 问题点数:0 回复次数:1 
[求助]导入excel出现的问题

public void SaveXml(string xmlString)
{
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=Excel.xls");
HttpContext.Current.Response.Charset = "UTF-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
HttpContext.Current.Response.ContentType = "application/vnd.ms-excel"; //"application/ms-excel";
this.EnableViewState = false;
HttpContext.Current.Response.Write(xmlString);
HttpContext.Current.Response.End();

}
为什么用上面那个方法导入excel为出现下面的乱码????excel用的是2007........

鎸囨爣
瀹㈡埛缂栧彿 寮

搜索更多相关主题的帖子: excel Response Current HttpContext 
2007-08-31 16:27
leisky
Rank: 1
等 级:新手上路
帖 子:253
专家分:0
注 册:2006-5-22
得分:0 
厉害。。谢谢老兄

2007-09-05 17:19



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-166813-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.089925 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved