Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > ASP > ASP Forum > การ ดาวโหลดไฟล์ จาก Web server มาเก็บไว้ใน Directory ที่กำหนด



 

การ ดาวโหลดไฟล์ จาก Web server มาเก็บไว้ใน Directory ที่กำหนด

 



Topic : 110121



โพสกระทู้ ( 58 )
บทความ ( 0 )



สถานะออฟไลน์




สวัสดีครับ ผม มีโค้ด ASP สำหรับการ ดาวโหลด ไฟล์ จาก Web server ดังนี้

Code (ASP)
<%@Language="VBScript"%>
<%Option Explicit%>
<%Response.Buffer = true%>
<%

On Error Resume Next
Dim strPath
'Response.Buffer = False 
Server.ScriptTimeout = 3000000

'-----------

'Set adminManager = WScript.CreateObject("Microsoft.ApplicationHost.WritableAdminManager")
'adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST"

'Set aspSection = adminManager.GetAdminSection("system.webServer/asp", "MACHINE/WEBROOT/APPHOST")
'Set limitsElement = aspSection.ChildElements.Item("limits")
'limitsElement.Properties.Item("scriptTimeout").Value = "00:02:00"
'limitsElement.Properties.Item("queueConnectionTestTime").Value = "00:00:05"
'limitsElement.Properties.Item("requestQueueMax").Value = 1000
'limitsElement.Properties.Item("maxRequestEntityAllowed").Value = 2147483647

'adminManager.CommitChanges()

'-----------

strPath ="test1.exe"'CStr(Request.QueryString("file"))exe'-- do some basic error checking for the QueryString
If strPath = "" Then
  Response.Clear
  Response.Write("No file specified.")
  Response.End
ElseIf InStr(strPath, "..") > 0 Then
  Response.Clear
  Response.Write("Illegal folder location.")
  Response.End
ElseIf Len(strPath) > 1024 Then
  Response.Clear
  Response.Write("Folder path too long.")
  Response.End
Else
  Call DownloadFile(strPath)
End If
  
Private Sub DownloadFile(file)
  '--declare variables
  Dim strAbsFile
  Dim strFileExtension
  Dim objFSO
  Dim objFile
  Dim objStream
  '-- set absolute file location
  strAbsFile = Server.MapPath(file)
  '-- create FSO object to check if file exists and get properties
  Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
  If objFSO.FileExists(strAbsFile) Then
    Set objFile = objFSO.GetFile(strAbsFile)
      '-- first clear the response, and then set the appropriate headers
      'Response.Flush()
	  Response.Clear
      '-- the filename you give it will be the one that is shown
      '   to the users by default when they save
      Response.AddHeader "Content-Disposition", "attachment; filename=" & objFile.Name
      Response.AddHeader "Content-Length", objFile.Size
	  Response.Buffer = true
      Response.ContentType  =  "application/octet-stream"
      Set objStream = Server.CreateObject("ADODB.Stream")
        objStream.Open
        '-- set as binary
        objStream.Type = 1
        Response.CharSet = "UTF-8"
        '-- load into the stream the file
        objStream.LoadFromFile(strAbsFile)
		'objStream.SaveToFile strAbsFile,"C:\EndoSMART1\test.exe"
        '-- send the stream in the response
        'Response.BinaryWrite(objStream.Read)
		Do While Not objStream.EOS
		Response.BinaryWrite objStream.Read(3670016)
		Response.Flush
		Loop
        objStream.Close
      Set objStream = Nothing
    Set objFile = Nothing
  Else  'objFSO.FileExists(strAbsFile)
    Response.Clear
	Response.Buffer = False
    Response.Write("No such file exists.")
  End If
  
  Set objFSO = Nothing
End Sub
%>



ซึ่งมันจะโหลดไฟล์มาเก็บไว้ที่ C:\Users\WITTAWAT\Downloads\

แต่ถ้าผมต้องการที่จะให้มันโหลด มาเก้บไว้ที่ "C:/test/" เป็น defalt folder สำหรับการ download ผมต้องเขียนโค้ด ยังไง หรือต้องใช้ คำสั่งไหน ในการ download

ขอบคุณมากครับ



Tag : ASP, VBScript, Web Service







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2014-07-22 14:35:59 By : wittawatsuwannarak View : 1653 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ไม่มีครับ ไม่สามารถทำได้






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2014-07-23 09:41:15 By : mr.win
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : การ ดาวโหลดไฟล์ จาก Web server มาเก็บไว้ใน Directory ที่กำหนด
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่