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"
%>