我很難在將數據從數據庫導出到Excel電子表格時正確顯示帳號。一家公司的帳號正確顯示。但是,其他人沒有。用戶必須雙擊單元格以查看整個帳號。我已經Google了這個問題,並沒有我嘗試過的解決方案。導出到Excel不能正確顯示數字
<cfsetting enablecfoutputonly="Yes">
<cfsavecontent variable="sTest">
<cfoutput>
<table>
<tr><th align="center">ATTUID</th>
<th>Company Name</th>
<th align="center">Account Number </th>
<th align="center">Total Past Due Balance</th>
<th align="center">Date Sent</th>
</tr>
<cfloop query="returnQuery">
<tr><td>#attuid#</td>
<td>#companyname#</td>
<td>#AccountNum4#</td>
<td>#totalpastdue#</td>
<td>#dateformat(posted)# #timeformat(posted, "h:mm tt")#</td>
</tr>
</cfloop>
</table>
</cfoutput>
</cfsavecontent>
<cfcontent type="application/vnd.msexcel">
<cfheader name="Content-Disposition" value="inline; filename=export.xls">
<cfoutput>#sTest#</cfoutput>
你是怎麼做出口的?使用CF9電子表格功能,html(即psuedo-excel),...? – Leigh 2010-08-03 12:47:40
這裏是輸出。#sTest# –
user281867
2010-08-03 16:17:08