VBscript輸出excel會加入此title
[vb]
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "content-disposition", "attachment; filename=Upload2.xls"
[/vb]
但若字串都是數字,開頭的0會不見,因此會加入以下css style,將格式設定為文字:
[css]
td { mso-number-format: @;}
[/css]