正在加载中...

关闭
请选择需要拨打的号码

信息详页

返回
ASP导出为Word或Excel的最简单方法
EXCEL 
<% 
Response.ContentType="application/msexcel"
Response.ContentType="application/excel"
Response.ContentType="application/vnd.ms-excel" 
Response.AddHeader "Content-Disposition","attachment;filename=表格.xls" 
%> 
 
WORD 
<% 
Response.ContentType ="application/vnd.ms-word" 
Response.AddHeader "Content-Disposition", "attachment; filename=文档.doc" 
%>