求助 如何asp从网页表格导出数据到EXCEL
从来没有做过导出到Excel的
恳请诸位仁兄为我支招
我知道用到Response.ContentType = "application/vnd.ms-excel
具体怎么实现 谁能给我代码举个最简单的例子阿 谢谢大家了
------解决方案--------------------很简单,把这句放在页面头,直接用就行了
------解决方案-------------------- <%Response.AddHeader "Content-Disposition ", "attachment;filename=家具销售收款明细表.xls "
response.ContentType = "application/vnd.ms-excel "
%>
<!--#include file = "../inc/conn.asp "-->
下面写要在excel中显示的数据
------解决方案--------------------http://www.jaron.cn/chs_scripts/45/2004-05/101495.shtml
格式有些错乱,凑合着看吧。