導出文件,我有導出文件頭到MS EXCELcolspan屬性,從傳統的ASP
Session.CodePage=65001
response.charset="utf-8"
Server.ScriptTimeout = 9999999
response.write "<meta http-equiv=""Content-Type"" content=""text/html; charset=utf-8""> "
response.ContentType = "application/vnd.ms-excel"
response.AddHeader "content-disposition","attachment;filename=websad_ExcelPlan.xls"
Response.Buffer = true
而且我創建了一個HTML表格:
<table>
<tr>
<td colspan="2">A</td>
</tr>
<tr>
<td>B</td>
<td>C</td>
</tr>
</table>
但屬性colspan
是忽略。如何在出口中使用colspan
?
適用於我。你是通過asp代碼創建表嗎?如果是這樣,請添加。 – SearchAndResQ
表格創建時使用的是相同的asp代碼,關閉標籤'<%%>',然後跟在html表格後 –