Tag: ASP经典

如何从传统ASP输出Excel * .xls文件

我有一些生成的html表格,我需要输出为Excel文件。 该网站是经典的ASP编码。 这可能吗? 可以用Open Office库以某种方式完成吗? 编辑:到目前为止,我已经尝试了一些build议,但似乎失败了。 理想情况下,我希望用户能够点击一个链接,开始下载一个.xls文件。 此代码: <%@ Language=VBScript %> <% option explicit Response.ContentType = "application/vnd.ms-excel" Response.AppendHeader "content-disposition", " filename=excelTest.xls" %> <table> <tr> <th>Test Col 1</th> <th>Test Col 2</th> <th>Test Col 3</th> <th colspan="2">Test Col 4</th> <th>Test Col 6</th> <th>Test Col 7</th> </tr> <tr> <td>Data</td> <td>Data</td> <td>Data</td> <td>Data</td> <td>Data</td> <td>Data</td> <td>Data</td> </tr> </table> IE7被用来获取页面似乎失败。 […]