Whatever message this page gives is out now! Go check it out!
SpreadsheetReadBinary(spreadsheetobj) |
Parameter | Description |
spreadSheetObject | The Excel spreadsheet object to read. |
<cfheader name="Content-Disposition" value="inline; filename=test.xls">
<cfset a = spreadhsheetnew()>
<cfset spreadsheetAddRow(a,"a,b,c")>
<!---You can do all the processing--->
<cfset bin = spreadsheetReadBinary(a)>
<cfcontent type="application/vnd-ms.excel" variable="#bin#" reset="true">