- 鐵幣
- 1628 元
- 文章
- 66 篇
- 聲望
- 220 枚
- 上次登入
- 08-9-23
- 精華
- 0
- 註冊時間
- 07-2-15
- UID
- 358074
|
.程式碼種類:ASP
.適 用 情 形 :如果今天我們希望當使用者開始我們的網頁時, 網頁能夠以檔案方式開啟給使用者瀏覽的話,可於在自已的網頁中加入下列的ASP程式碼即可。
<%
fMnoth=month(now) '------ 抓取現在月份 -------
if fMnoth<10 then fMnoth="0"&fMnoth
fDay=day(now) '------ 抓取現在日期 -------
if fDay<10 then fDay="0"&fDay
'---------------- 若為Excel檔案請使用下面這一段 -------------------
fname=year(now)&fMnoth&fDay&"_自訂檔案名稱.xls" '------ XLS檔案名稱字串(月份+日期+自訂名稱) -------
Response.AddHeader "Content-Disposition", "filename="&fname ' 儲存檔名
response.c
'---------------- 若為Word檔案請使用下面這一段 -------------------
fname=year(now)&fMnoth&fDay&"_自訂檔案名稱.doc" '------ DOC檔案名稱字串(月份+日期+自訂名稱) -------
Response.AddHeader "Content-Disposition", "filename="&fname '儲存檔名
response.c
'--------------------------- 以下為自已網頁內容的ASP程式碼-----------------------------
xxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxx
%>
若還有問題,歡迎PM給我~ 謝謝! |
|