Makale numarası: 299692 - Son Gözden Geçirme: 04 Ocak 2012 Çarşamba - Gözden geçirme: 0.1

asp kullanarak Web sunucusuna dosyaları karşıya yüklemek için

Sistem İpucuBu makale, kullandığınızdan farklı bir işletim sistemine yöneliktir. Sizinle ilgili olmayabilecek makale içeriği devre dışı bırakıldı.

Bu Sayfada

Hepsini aç | Hepsini kapa
Bir Microsoft Visual Basic.Bu makalenin sürüm net, bkz: 315832  (http://support.microsoft.com/kb/315832/ ) .

Özet

Bu makalede, Web sunucunuzu etkinleştirme Dosya aktarımları kullanarak Microsoft Active Server Pages (asp) sayfalarından alabilirsiniz. bir sunucu tarafı Microsoft com + bileşen.

Not: Visual Basic 6 geliştirmek için Microsoft Destek sınırları değişti. Daha fazla bilgi için lütfen bkz:http://msdn.microsoft.com/en-us/vstudio/ms788708. (http://msdn.microsoft.com/en-us/vstudio/ms788708)

Gereksinimleri

  1. Microsoft Windows 2000 ile Microsoft Internet Information Server yüklü ve yapılandırılmış 5.0 (IIS)
  2. Geliştirme bilgisayarınızda başka bir bilgisayarda ise Sunucu, geçerli ağ ya da sunucu Internet bağlantısı olması gerekir, asp sayfaları barındırır.

Microsoft Visual Basic 6 Project kurulumunu ve kodu

  1. Visual Basic'i başlatın ve yeni bir ActiveX DLL dosyası başlatın Proje.
  2. Proje adıASPFileUpload.
  3. Adını değiştirme Class1 içinDosya.
  4. Üzerinde Proje menüsünde,'ı tıklatın Başvurular.
  5. İçinde Başvurular iletişim kutusu aşağıdaki seçenekleri seçmek için tıklatın ve sonra tıklatın TAMAM:
    • Visual Basic For Applications
    • Visual Basic çalışma zamanı nesneleri ve yordamlar
    • Visual Basic nesnelerine ve yordamlar
    • ole Otomasyonu
    • com + Hizmetleri tür kitaplığı
    • Microsoft Active Server Pages Nesne Kitaplığı
    • Microsoft komut dosyası Çalışma Zamanı Modülü
  6. Üzerinde Proje menüsünde,'ı tıklatın ASPFileUpload özellikleri.
  7. İçinde Proje Özellikleri iletişim kutusunda, seçmek için tıklatın Katılımsız yürütme ve Bellekte tutulur.ve ardından TAMAM.
  8. File.cls için aşağıdaki kodu yapıştırın:
    Option Explicit
    
    Const ERR_INVALID_FILENAME = vbObjectError + 1000
    Const ERR_INVALID_TARGET = vbObjectError + 1001
    Const ERR_FILE_EXISTS = vbObjectError + 1002
    Const ERR_UPLOAD_CALLED = vbObjectError + 1003
    Const VB_ERR_PATH_NOT_FOUND = 76
    
    Private m_objContext As ObjectContext
    Private m_objRequest As ASPTypeLibrary.Request
    
    Private m_strTarget As String
    Private m_strFileName As String
    Private m_blnOverWrite As Boolean
    Private m_blnUploaded As Boolean
    Private m_lngTotalBytes As Long
    
    'All other form elements go here.
    Private m_formCol As Scripting.Dictionary
    
    Implements ObjectControl
    
    Private Function ObjectControl_CanBePooled() As Boolean
      ObjectControl_CanBePooled = False
    End Function
    
    Private Sub ObjectControl_Activate()
      Set m_objContext = GetObjectContext()
      Set m_objRequest = m_objContext("Request")
      Set m_formCol = New Scripting.Dictionary
    End Sub
    
    Private Sub ObjectControl_Deactivate()
      Set m_objContext = Nothing
      Set m_objRequest = Nothing
      Set m_formCol = Nothing
    End Sub
    
    Public Sub Upload()
      
      Const DEFAULT_CHUNK_SIZE = 262144 '256kb
      
      Dim bytBeginOfChunk() As Byte
      Dim bytEndOfChunk() As Byte
      Dim bytBeginOfName() As Byte
      Dim bytEndOfName() As Byte
      Dim bytBeginOfFile() As Byte
      Dim bytEndOfFile() As Byte
      Dim bytBeginOfValue() As Byte
      Dim bytEndOfValue() As Byte
      Dim bytName() As Byte
      Dim bytValue() As Byte
      Dim bytThisChunk() As Byte
      Dim bytFileName() As Byte
      Dim lngBeginOfChunk As Long
      Dim lngEndOfChunk As Long
      
      Dim lngBeginOfAttribute As Long
      Dim lngEndOfAttribute As Long
      Dim lngBeginOfValue As Long
      Dim lngEndOfValue As Long
      Dim blnEndOfData As Boolean
      Dim lngChunkSize As Long
      Dim lngBytesLeft As Long
      Dim lngFileNum As Long
      Dim strFileName As String
      
      On Error GoTo UploadErr
      
      If Uploaded Then
        Err.Raise ERR_UPLOAD_CALLED, App.Title, "The Upload method has already been called."
      End If
         
      bytBeginOfChunk = StrConv("-----------------------------", vbFromUnicode)
      bytEndOfChunk = StrConv("-----------------------------", vbFromUnicode)
      
      bytBeginOfName = StrConv("name=", vbFromUnicode) & ChrB(34)
      bytEndOfName = ChrB(34)
      
      bytBeginOfFile = StrConv("filename=", vbFromUnicode) & ChrB(34)
      bytEndOfFile = ChrB(34)
      
      bytBeginOfValue = ChrB(13) & ChrB(10) & ChrB(13) & ChrB(10)
      bytEndOfValue = ChrB(13) & ChrB(10) & StrConv("-----------------------------", vbFromUnicode)
         
      'Initialize the chunk size.
      If m_objRequest.TotalBytes <= DEFAULT_CHUNK_SIZE Then
        lngChunkSize = m_objRequest.TotalBytes
      Else
        lngChunkSize = DEFAULT_CHUNK_SIZE
      End If
        
      'Get the chunk from the request object.
      bytThisChunk = m_objRequest.BinaryRead(CVar(lngChunkSize))
    
      'Initialize the value.
      lngBeginOfChunk = 1
      
      'Repeat until the end of the data.
      Do While Not blnEndOfData
        'Begin the chunk.
        lngBeginOfChunk = InStrB(lngBeginOfChunk, bytThisChunk, bytBeginOfChunk) + UBound(bytBeginOfChunk)
        
        'Get name of the item.
        lngBeginOfAttribute = InStrB(lngBeginOfChunk, bytThisChunk, bytBeginOfName) + UBound(bytBeginOfName) + 1
        lngEndOfAttribute = InStrB(lngBeginOfAttribute, bytThisChunk, bytEndOfName)
        bytName = MidB(bytThisChunk, lngBeginOfAttribute, lngEndOfAttribute - lngBeginOfAttribute)
        
        'Get the value of the item.
        lngBeginOfValue = InStrB(lngEndOfAttribute, bytThisChunk, bytBeginOfValue, vbBinaryCompare) + UBound(bytBeginOfValue) + 1
        lngEndOfValue = InStrB(lngBeginOfValue, bytThisChunk, bytEndOfValue, vbBinaryCompare)
        
        If lngEndOfValue = 0 Then
          'The item extends the past current chunk.
          bytValue = MidB(bytThisChunk, lngBeginOfValue, lngChunkSize)
        Else
          'The item value exists in the current chunk.
          bytValue = MidB(bytThisChunk, lngBeginOfValue, lngEndOfValue - lngBeginOfValue)
        End If
        
        If UCase(StrConv(bytName, vbUnicode)) = "FILE" Then
          lngBeginOfAttribute = InStrB(lngBeginOfChunk, bytThisChunk, bytBeginOfFile, vbBinaryCompare) + UBound(bytBeginOfFile) + 1
          lngEndOfAttribute = InStrB(lngBeginOfAttribute, bytThisChunk, bytEndOfFile, vbBinaryCompare)
          
          bytFileName = MidB(bytThisChunk, lngBeginOfAttribute, lngEndOfAttribute - lngBeginOfAttribute)
          
          If UBound(bytFileName) < 0 Or UBound(bytValue) < 0 Then
            Err.Raise ERR_INVALID_FILENAME, App.Title, "Invalid File Name."
          End If
          
          If Me.Target = "" Then
            Err.Raise ERR_INVALID_TARGET, App.Title, "Invalid Target."
          End If
          
          'Use the original file name.
          If Me.FileName = "" Then
          
            'Trim the path from the file name.
            While InStrB(1, bytFileName, StrConv("\", vbFromUnicode), vbBinaryCompare) > 0
              bytFileName = MidB(bytFileName, InStrB(1, bytFileName, StrConv("\", vbFromUnicode)) + 1)
            Wend
            
            'Set the property.
            Me.FileName = StrConv(bytFileName, vbUnicode)
            
            'Convert the byte to Unicode.
            strFileName = Me.Target & Me.FileName
           
          Else
            strFileName = Me.Target & Me.FileName
          End If
          
          'Check for overwrite.
          If Me.OverWrite Then
            'This is the hack check. Make sure that wildcard characters cannot be used.
            If Not InStr(1, strFileName, "*") Then
              If FileExists(strFileName) Then
                Kill strFileName
              End If
            Else
              Err.Raise ERR_INVALID_FILENAME, App.Title, "The specified file name appears to be invalid."
            End If
          Else
            If FileExists(strFileName) Then
              Err.Raise ERR_FILE_EXISTS, App.Title, "The file already exists."
            End If
          End If
          
          lngFileNum = FreeFile
          
          Open strFileName For Binary Access Write As #lngFileNum
          
          'Write the file to the destination directory.
          Put #lngFileNum, , bytValue
    
          'This chunk is empty. Therefore, get a new chunk.
          lngBytesLeft = m_objRequest.TotalBytes - lngChunkSize
            
          'Start the chunking machine.
          Do While lngBytesLeft > 0
          
            'Get a new chunk.
            bytThisChunk = m_objRequest.BinaryRead(CVar(lngChunkSize))
                      
              lngEndOfValue = InStrB(1, bytThisChunk, bytEndOfValue, vbBinaryCompare)
              
              If lngEndOfValue > 0 Then
                'The item value exists in the current chunk.
                bytThisChunk = MidB(bytThisChunk, 1, lngEndOfValue - 1)
              End If
              
              'Append the chunk to the file.
              Put #lngFileNum, , bytThisChunk
              
              lngBytesLeft = lngBytesLeft - lngChunkSize
              
              If lngBytesLeft < lngChunkSize Then
                lngChunkSize = lngBytesLeft
              End If
            Loop
            
            Close #lngFileNum
            
            TotalBytes = FileLen(strFileName)
            
         ' Exit Do
         Else
          If UCase(StrConv(bytName, vbUnicode)) = "SAVEAS" Then
           Me.FileName = StrConv(bytValue, vbUnicode)
          Else 
           'form field other than file, such as textboxes 
           If UBound(bytValue) > 0 And UBound(bytName) > 0 Then 
            m_formCol.Add StrConv(bytName, vbUnicode), StrConv(bytValue, vbUnicode)
           Else
            m_formCol.Add StrConv(bytName, vbUnicode), ""
           End If
          End If
         End If
        
        'Get the next chunk.
        lngBeginOfChunk = lngEndOfValue
        
        If InStrB(lngBeginOfChunk, bytThisChunk, bytBeginOfName, vbBinaryCompare) = 0 Then
          blnEndOfData = True
        End If
      Loop
    
      Uploaded = True
      
      Exit Sub
      
    UploadErr:
      
      If Err.Number = VB_ERR_PATH_NOT_FOUND Then
        Err.Raise ERR_INVALID_TARGET, App.Title, "The Target specified does not exist."
      Else
        Err.Raise Err.Number, Err.Source, Err.Description
      End If
    End Sub
    
    Public Property Get Form() As Collection
        Set Form = m_formCol
    End Property
    Public Property Get FileName() As String
      FileName = m_strFileName
    End Property
    
    Public Property Let FileName(ByVal strNewValue As String)
      If Uploaded Then
        Err.Raise ERR_UPLOAD_CALLED, App.Title, "The Upload method has already been called."
      Else
        m_strFileName = strNewValue
      End If
    End Property
    
    Public Property Get OverWrite() As Boolean
      OverWrite = m_blnOverWrite
    End Property
    
    Public Property Let OverWrite(ByVal blnNewValue As Boolean)
      If Uploaded Then
        Err.Raise ERR_UPLOAD_CALLED, App.Title, "The Upload method has already been called."
      Else
        m_blnOverWrite = blnNewValue
      End If
    End Property
    
    Private Property Get Uploaded() As Boolean
      Uploaded = m_blnUploaded
    End Property
    
    Private Property Let Uploaded(ByVal blnNewValue As Boolean)
      m_blnUploaded = blnNewValue
    End Property
    
    Public Property Get Target() As String
      Target = m_strTarget
    End Property
    
    Public Property Let Target(ByVal NewValue As String)
      If Uploaded Then
        Err.Raise ERR_UPLOAD_CALLED, App.Title, "The Upload method has already been called."
      Else
        m_strTarget = NewValue
      End If
    End Property
    
    Private Function FileExists(ByVal FileName As String) As Boolean
      On Error GoTo FileExistsErr
      
      FileLen FileName
      FileExists = True
      Exit Function
      
    FileExistsErr:
      If Err.Number = VB_ERR_PATH_NOT_FOUND Then
        FileExists = False
      End If
    End Function
    
    Public Property Get TotalBytes() As Long
      TotalBytes = m_lngTotalBytes
    End Property
    
    Private Property Let TotalBytes(ByVal NewValue As Long)
      m_lngTotalBytes = NewValue
    End Property
    
  9. Projeyi derleyin

asp kodu

  1. Aşağıdaki kodu Not Defteri gibi bir düzenleyiciye yapıştırın veya Microsoft Visual InterDev ve sonra olarak kaydedinPostFile.asp:
    <%@ Language=VBScript %>
    <html>
    <head>
    </head>
    <body>
    <form enctype="multipart/form-data" action="uploadfile.asp" method="post" name="main1">
    <input name="file" type="file" size="50">
    <INPUT type="text" id=text1 name=text1><INPUT type="text" id=text2 name=text2>
    <input name="submit" type="submit" value="Upload">
    </form>
    </body>
    </html>
    
  2. Aşağıdaki kodu Not Defteri gibi bir düzenleyiciye kopyalayın veya Visual InterDev ve sonra olarak kaydedin UploadFile.asp:
    <%@ Language=VBScript %>
    <%
      '//////////////////////////////////////////////////////////////////////////////////
      '//  ASPFileUpload.File API
      '//  
      '//  Properties
      '//     FileName
      '//       - Read/Write 
      '//       - The file will be saved with this file name. 
      '//       - This property can only be set before calling Upload.
      '//       - If no value is specified, the original file name
      '//       - in the HTTP post will be used.
      '//     
      '//     OverWrite
      '//       - Read/Write
      '//       - This property can only be set before calling Upload.
      '//       - If set to false and if the destination file exists, an error
      '//       - is raised. The default value is False.
      '//     
      '//     Target 
      '//       - Read/Write
      '//       - The file will be written to this folder.
      '//       - This property can only be set before calling Upload.
      '//       - There is no default value for this property and it is required.
      '//       
      '//      Form
      '//        - ReadOnly
      '//        - Scripting.Dictionary object
      '//        - Can access a specific item by using aspfileupload.Form("item").
      '//        - Acts like the asp form collection.
      '//        - Can enumerate all values in a collection with for each.
      '//        - Only filled after the Upload method is called.
      '//         
      '//  Methods
      '//     Upload
      '//       - This method parses the HTTP Post and writes the file.
      '//  
      '//  Other
      '//    - ASPFileUpload requires COM+
      '//    - Any call to the Request.Form() collection will cause the Upload
      '//      method to fail as the method references the Binary contents of the
      '//      Request object through the Request.BinaryRead method. 
      '//    - Also, if you access a variable in the Request collection without 
      '//      specifying the subcollection that it belongs to, the Request.Form collection 
      '//      may be searched. This causes an error in the Upload method.
      '//      
      '//////////////////////////////////////////////////////////////////////////////////
      
      Dim strMsg 'As String
      
     ' On Error Resume Next
      dim fuFile
      set fuFile = server.CreateObject("aspFileupload.file")  
      'Set the destination folder.
      fuFile.Target = "C:\TEMP\AspFileUpload\"
      fuFile.Upload
      
      If Err.number = 0 Then
        strMsg = fuFile.FileName  & " was uploaded successfully."
      Else
        strMsg = "An error occurred when uploading your file: " & Err.Description 
      End If
      for each o in fuFile.Form
    	Response.Write o  & "<BR>"
    	
    	next
    	
    	Response.Write fuFile.Form.item("text1") & "  :  " & fuFile.Form.item("text2")
    '  Response.Write Request.Form("test")
     set fufile = nothing
    %>
    <html>
    <head></head>
    <body>
    <%=strMsg%>
    </body>
    </html>

Sunucuyu ayarlama

  1. Alacak Web sunucusundaki bir klasör oluşturma Karşıya yüklenen dosyalar, gibiC:\TEMP\AspFileUpload.
  2. ASPFileUpload.dll dosyası Web sunucusuna kopyalamak ve sonra komut isteminde aşağıdaki komutu kullanarak kaydettirmeniz:
    Regsvr32 PathToDLL\ASPFileUpload.dll
  3. Dosya izinleri (yazma erişimi) dosyaları karşıya yüklemek istediğiniz kullanıcılar için geçerlidir.
  4. ' I tıklatın Başlat, işaretAyarlarıve ardından Denetim Paneli.
  5. Denetim Masası'nda tıklatın Yönetim Araçlarve ardından Bileşen Hizmetleri açmak için Bileşen Hizmetleri Microsoft Yönetim Konsolu'ndaki (mmc).
  6. Genişlet Bileşen Hizmetleri düğüm,Bilgisayarlar düğüm, Bilgisayarım Düğüm vecom + uygulamaları düğüm.
  7. Düğümü sağ tıklatın, işaret Yenive ardındanUygulama.
  8. İçinde Yeni bir uygulama yüklediğinizde veya iletişim kutusunda'ı tıklatın Boş bir uygulama oluştur, Uygulama adı, seçmek için tıklatın emin olun Sunucu Uygulamave ardından Sonraki.
  9. İçinde Uygulama kimliğini ayarla iletişim kutusuna Bu kullanıcıve kimlik bilgilerini yazın uygun kullanıcı hesabı. Kullanıcı hesabı için klasör yazma erişiminizin olması gerekir Karşıya yüklenen dosyayı alır.
  10. ' I tıklatın Son.
  11. Bunun için oluşturduğunuz düğümünü genişletin uygulama.
  12. Şıngırtı sağ tıklatın, işaret Yeni, ve ı Bileşen.
  13. ' I tıklatın Yeni bileşen yükle, kaydedilmiş ve .dll dosyası kayıtlı bulunduğu klasörü bulun ve tıklatın Dosya'yı tıklatın Sonrakive ardındanSon.
  14. Postfile.asp ve Uploadfile.asp dosyasına kopyalayın Web kök klasörü. Varsayılan olarak, Web kök dizinidir C:\Inetpub\Wwwroot.
  15. Uploadfile.asp yansıtmak için hedef klasörü Düzenle 1. adımda oluşturulan klasörü. Hedef klasör ataması bulunur Aşağıdaki kod satırı:
    fuFile.Target = "C:\TEMP\AspFileUpload\"
    					

Dosya karşıya yükleme

  1. Postfile.asp sayfasını bir Web tarayıcısında açın Aşağıdaki url:
    http://YourWebServer/Postfile.asp
  2. Karşıya yüklemek ve ardından istediğiniz dosyayı seçinKarşıya yükleme.
  3. Karşıya yükleme klasörünüzü denetleyin. Karşıya yüklediğiniz dosya bu klasörde görünür.

Sorun giderme

  • Bir dosya adı yazmazsanız ve göndermeyi deneyin Postfile.asp sayfa, genel, sunucu tarafı hata iletisi alırsınız. , üzerinde daha kolay hata iletisi sağlamak için kodu değiştirmek isteyebilirsiniz yan veya sunucu tarafında istemci.
  • Yüksek hacimli karşıya yükleme kapasitesi, Microsoft gereksiniminiz varsa satın almak veya yapabilirsiniz derlenmiş, çok iş parçacıklı bir bileşen oluşturmak önerir daha verimli bu Visual Basic bileşen yükü işlemek.
  • Kullanıcıların izin her olası bir güvenlik riski bulunmaktadır. dosyaları Web sunucunuza yüklemek için. Bu sunucu ise, özellikle doğrudur Internet'te ve anonim izin verirseniz yükler. Doğru gerekir emin olmak için Windows izinler ve IIS kullanıcı kimlik doğrulamasını yapılandırmak, kullanıcılara yalnızca gereksinim duydukları erişim sağlayabilir. Aksi halde, bu durum önemlidir Kullanıcılar güvenlik denetimleri atlayarak erişmek için bir yol sağlar, Sistem.

Bu makaledeki bilginin uygulandığı durum:
  • Microsoft Active Server Pages 4.0
  • Microsoft Internet Information Services 5.0
Anahtar Kelimeler: 
kbaspobj kbcodesnippet kbconfig kbdeployment kbfile kbfso kbguidelines kbhowto kbsample kbscript kbsecurity kbserver kbsetup kbwebserver kbmt KB299692 KbMttr
Otomatik TercümeOtomatik Tercüme
ÖNEMLİ: Bu makale, bir kişi tarafından çevrilmek yerine, Microsoft makine-çevirisi yazılımı ile çevrilmiştir. Microsoft size hem kişiler tarafından çevrilmiş, hem de makine-çevrisi ile çevrilmiş makaleler sunar. Böylelikle, bilgi bankamızdaki tüm makalelere, kendi dilinizde ulaşmış olursunuz. Bununla birlikte, makine tarafından çevrilmiş makaleler mükemmel değildir. Bir yabancının sizin dilinizde konuşurken yapabileceği hatalar gibi, makale; kelime dağarcığı, söz dizim kuralları veya dil bilgisi açısından yanlışlar içerebilir. Microsoft, içeriğin yanlış çevrimi veya onun müşteri tarafından kullanımından doğan; kusur, hata veya zarardan sorumlu değildir. Microsoft ayrıca makine çevirisi yazılımını sıkça güncellemektedir.
Makalenin İngilizcesi aşağıdaki gibidir:299692  (http://support.microsoft.com/kb/299692/en-us/ )