※ 引述《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";
这样?