【发布时间】:2015-12-22 15:36:39
【问题描述】:
我只是想知道 我用这些将一些 html 表格和数据导出到 excel,但我真的不知道它的功能是什么。 任何答案表示赞赏。
所以当我在下面的编码中使用这些时,我实际上是在使用 asp 吗?
<body>
<%
String exportToExcel = request.getParameter("exportToExcel");
if (exportToExcel != null && exportToExcel.toString().equalsIgnoreCase("YES")) { //application/vnd.ms-excel
response.setContentType("application/vnd.ms-excel"); //application/vnd.opentextformatsofficedocument.spreadsheetml.sheet
response.setHeader("Content-Disposition", "inline; filename=" + "whatever.xls");
}
%>
【问题讨论】:
-
我投票结束这个问题,因为这个信息可以通过简单的搜索找到
-
您使用任何类型的模板引擎吗?这可以是任何东西......
标签: html user-interface