※ 引述《phantomofkid ()》之銘言:
: 大家好
: 我想使用下面的程式碼將網頁內容轉存為xls格式
: Response.AddHeader "Content-Disposition","attachment;filename=test.xls"
: Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader("Content-Disposition","attachment;filename=test.xls;");
Response.ContentType = "application/vnd.ms-excel";
這樣?