1
我試圖讓用戶選擇下載並保存網頁到他們想要的位置。我一直在尋找解決方案,但似乎沒有任何工作。我在經典的asp中使用vbscript。使用vbscript下載並保存網頁
這是我最後一次嘗試
dim xHttp: Set xHttp = createobject("Microsoft.XMLHTTP")
dim bStrm: Set bStrm = createobject("Adodb.Stream")
xHttp.Open "GET", "" &Session("ServerURL") & "/idautomation/IDAutomationStreamingLinear.aspx?D=MAPS$"&request.QueryString("catcode")&"%25"&request.QueryString("typecode")&"&X=0.09&BH=3&S=0&CC=T&LM=5&TM=7.5&ST=F", False
xHttp.Send
with bStrm
.type = 1 '//binary
.open
.write xHttp.responseBody
.savetofile "d:\DownloladPdf.pdf", 2 '//overwrite
end with
但它拋出一個「寫入文件失敗。」在.savetofile線。
我希望用戶能夠選擇在哪裏保存它...
顯示您嘗試過的代碼。這不是作業解決服務 – mumair
我編輯我的問題 – programmingGirl
可能的重複[如何使用vbscript中的經典asp下載文件](http://stackoverflow.com/questions/12929866/how-to-download-the-files-使用-vbscript-in-classic-asp) – Dijkgraaf