欢迎光临
我们一直在努力

Web导出Word需要添加头文件-.NET教程,Asp.Net开发

建站超值云服务器,限时71元/月

 

这个在asp的时候我是这么做的,但是在asp.net中,还是推荐用现成的对象好,比如

httpcontext.current.response.appendheader(“content-disposition”, “attachment;filename=” + filename);
httpcontext.current.response.charset = “utf-8”;
httpcontext.current.response.contentencoding = system.text.encoding.default;
httpcontext.current.response.contenttype = filetype;

//httpcontext.current.response.contenttype = “application/ms-excel”;//image/jpeg;text/html;image/gif;vnd.ms-excel/msword

system.io.stringwriter tw = new system.io.stringwriter();
system.web.ui.htmltextwriter hw = new system.web.ui.htmltextwriter(tw);
gv.rendercontrol(hw);

httpcontext.current.response.write(tw.tostring());
httpcontext.current.response.end();  回复   

# re: web导出word需要添加头文件 2006-08-15 23:50 尧尧
@aspnetx
是的,我也是用现成的,这就是上面我说的,我经常导出excel,那个函数我写在了
table导出为xls,doc,txt,htm方法
但如果导出word,就会出现编码的问题,当添了上面那段,问题就解决了:)

http://www.cnblogs.com/zjy/archive/2006/08/15/477651.html

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » Web导出Word需要添加头文件-.NET教程,Asp.Net开发
分享到: 更多 (0)