I am using ColdFusion 8. Doing something like this:
<cfheader name="content-disposition" value="attachment; filename=abc.xlsx">
<cfcontent type="application/msexcel">
<html>
But I get a file like abc.xlsx.XLS
.
The reason I'm trying to get an XLSX
is because sometimes the XLS
version is so large and Office 2007 gets stuck opening it or takes way to long.
Only workaround right now is to wait, open the XLS
in Office 2007, save as .XLSX
and then open it faster.
Any help is appreciated!