在我的工作中,我们有一些要求,包括使用 asp。我们对此没有经验,我在stackoverflow的其他主题中找不到解决这个问题的方法
问题是,如果我把
<% Option Explicit
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment; filename=excelTest.xls"
%>
整个页面转到 excel 文件。
我希望生成的 xls 文件中只有一个表。
我想要的表是由这一行生成的:
<% =Result %>
怎样才能做到这一点?
thxxx