讓asp產生帶有樣式的word檔,如字體顏色為紅色,加粗,字號為36號的文字複製程式碼如下:
< %
Set fso=Server.CreateObject(Scripting.FileSystemObject)
str=<html><title>asp產生word檔範例</title><body><span style='color:#ff0000;font-size:36px; font-weight:bold;'>歡迎光臨www.vevb. com(腳本之家)</span></body></html>
filename= 2008.doc
Set act = fso.CreateTextFile(server.mappath(filename), true)
act.WriteLine(str)
act.close
Set fso=Nothing
response.write 產生Word檔案成功
% >