Home Database Mysql Tutorial 无组件文件上传代码实例

无组件文件上传代码实例

Jun 07, 2016 pm 03:16 PM
upload code about Example document article components

关于无组件文件上传的文章已经很多了,所以在这里我不想再解释无组件文件上传的原理。在asp中无法将二进制文件数据直接保存成文件,所以我们一般还是利用数据库来保存用户上传的文件。 1。数据库表结构(access): UserID:Text(保存上传文件的用户ID) FileCon

关于无组件文件上传的文章已经很多了,所以在这里我不想再解释无组件文件上传的原理。在asp中无法将二进制文件数据直接保存成文件,所以我们一般还是利用数据库来保存用户上传的文件。

1。数据库表结构(access):
UserID:Text(保存上传文件的用户ID)
FileContentType:Text(用来保存上传文件的类型,eg:"application/msWord",主要用来使用户能正确下载此文件)
FileContent:OLE Object(保存文件数据)

2。HTML文件
muploadfile.htm


'这里用来表示开始文件数据上传
File to send:





'这里用来表示文件数据结束



3。ASP文件
muploadfile.asp

Response.Expires=0
Function bin2str(binstr)
  Dim varlen,clow,ccc,skipflag

  skipflag=0
  ccc = ""
  If Not IsNull(binstr) Then
    varlen=LenB(binstr)
    For i=1 To varlen
      If skipflag=0 Then
        clow = MidB(binstr,i,1)
        If AscB(clow) > 127 Then
          ccc =ccc & Chr(AscW(MidB(binstr,i+1,1) & clow))
          skipflag=1
        Else
          ccc = ccc & Chr(AscB(clow))
        End If
      Else
        skipflag=0
      End If
    Next
  End If
  bin2str = ccc
End Function


varByteCount = Request.TotalBytes
bnCRLF = chrB( 13 ) & chrB( 10 )
binHTTPHeader=Request.BinaryRead(varByteCount)    
Divider = LEFTB( binHTTPHeader, INSTRB( binHTTPHeader, bnCRLF ) - 1 )

'开始读非文件域的数据
Do while lenB(binHTTPHeader)>46
  
  binHeaderData = LeftB(binHTTPHeader, INSTRB( binHTTPHeader, bnCRLF & bnCRLF )-1)
  strHeaderData=bin2str(binHeaderData)

  lngFieldNameStart=Instr(strHeaderData,"name="&chr(34))+Len("name="&chr(34))
  lngFieldNameEnd=Instr(lngFieldNameStart,strHeaderData,chr(34))
  
  
  strFieldName=Mid(strHeaderData,lngFieldNameStart,lngFieldNameEnd-lngFieldNameStart)
  strFieldName=Trim(strFieldName)
  strFieldName=Replace(strFieldName,vbcrlf,vbnullstring)
  
    '判断文件数据时候开始
  If strComp(strFieldName,"FileUploadStart",1)=0 Then
    binHTTPHeader=MIDB(binHTTPHeader,INSTRB( DataStart + 1, binHTTPHeader, divider ))
    exit do
  End if
  
  DataStart = INSTRB( binHTTPHeader, bnCRLF & bnCRLF ) + 4
  DataEnd = INSTRB( DataStart + 1, binHTTPHeader, divider ) - DataStart

  binFieldValue=MIDB( binHTTPHeader, DataStart, DataEnd )
  strFieldValue=bin2str(binFieldValue)
  strFieldValue=Trim(strFieldValue)
  strFieldValue=Replace(strFieldValue,vbcrlf,vbnullstring)

  '非文件上传域变量赋值
  execute strFieldName&"="""&strFieldValue&""""
  
    
  binHTTPHeader=MIDB(binHTTPHeader,INSTRB( DataStart + 1, binHTTPHeader, divider ))
    
loop

'开始处理文件数据
Do while lenB(binHTTPHeader)>46
  
  
  binHeaderData = LeftB(binHTTPHeader, INSTRB( binHTTPHeader, bnCRLF & bnCRLF )-1)
    
  strHeaderData=bin2str(binHeaderData)
  
  '读取上传文件的Content-Type
  lngFileContentTypeStart=Instr(strHeaderData,"Content-Type:")+Len("Content-Type:")
  strFileContentType=Trim(Mid(strHeaderData,lngFileContentTypeStart))
  strFileContentType=Replace(strFileContentType,vbCRLF,vbNullString)
  
  '读取上传的文件名
  lngFileNameStart=Instr(strHeaderData,"filename="&chr(34))+Len("filename="&chr(34))
  lngFileNameEnd=Instr(lngFileNameStart,strHeaderData,chr(34))
  strFileName=Mid(strHeaderData,lngFileNameStart,lngFileNameEnd-lngFileNameStart)
  strFileName=Trim(strFileName)
  strFileName=Replace(strFileName,vbCRLF,vbNullString)
  
  '读取上传文件数据
  DataStart = INSTRB( binHTTPHeader, bnCRLF & bnCRLF ) + 4
  DataEnd = INSTRB( DataStart + 1, binHTTPHeader, divider ) - DataStart
  
  If strFileName"" Then
        
    binFieldValue=MIDB( binHTTPHeader, DataStart, DataEnd )
    
    '将上传的文件写入数据库
    set conn = Server.CreateObject("ADODB.Connection")
    conn.Open "DSN=abc"
    
    SQL="select * from User_File"
    set rs=server.CreateObject("ADODB.Recordset")
    rs.Open sql,conn,3,3
    rs.addnew
    rs("UserID")=UserID
    rs("FileContentType")=strFileContentType
    rs("FileContent").AppendChunk binFieldValue
    rs.update
    rs.close
    set rs=Nothing
    conn.Close
    set conn=Nothing
    
  End if
  
  binHTTPHeader=MIDB(binHTTPHeader,INSTRB( DataStart + 1, binHTTPHeader, divider ))
  
loop
%>

4。下载用户上传的文件
Response.Buffer   = true
Response.Clear

UserID=request("UserID")

Set conn=server.createobject("adodb.connection")
set rs=server.createobject("adodb.recordset")
conn.open "DSN=UploadFile"
rs.open "select * from User_File where UserID='"&UserID&"'",conn,3,3
Response.ContentType = rs("FileContentType")

lngOffset=0
conChunkSize=1024
lngPictSize=rs("FileContent").ActualSize
Do While lngOffset  varChunk = rs("FileContent").GetChunk(conChunkSize)
 Response.BinaryWrite varChunk
 lngOffset = lngOffset + conChunkSize
 If lngOffset > lngPictSize Then Exit Do
Loop

rs.close
set rs=Nothing
conn.close
set conn=nothing
%>

就是这些了,希望此方法对大家能有所帮助。:)

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. What to do if the 0x80004005 error code appears. The editor will teach you how to solve the 0x80004005 error code. Mar 21, 2024 pm 09:17 PM

When deleting or decompressing a folder on your computer, sometimes a prompt dialog box "Error 0x80004005: Unspecified Error" will pop up. How should you solve this situation? There are actually many reasons why the error code 0x80004005 is prompted, but most of them are caused by viruses. We can re-register the dll to solve the problem. Below, the editor will explain to you the experience of handling the 0x80004005 error code. Some users are prompted with error code 0X80004005 when using their computers. The 0x80004005 error is mainly caused by the computer not correctly registering certain dynamic link library files, or by a firewall that does not allow HTTPS connections between the computer and the Internet. So how about

How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? How to transfer files from Quark Cloud Disk to Baidu Cloud Disk? Mar 14, 2024 pm 02:07 PM

Quark Netdisk and Baidu Netdisk are currently the most commonly used Netdisk software for storing files. If you want to save the files in Quark Netdisk to Baidu Netdisk, how do you do it? In this issue, the editor has compiled the tutorial steps for transferring files from Quark Network Disk computer to Baidu Network Disk. Let’s take a look at how to operate it. How to save Quark network disk files to Baidu network disk? To transfer files from Quark Network Disk to Baidu Network Disk, you first need to download the required files from Quark Network Disk, then select the target folder in the Baidu Network Disk client and open it. Then, drag and drop the files downloaded from Quark Cloud Disk into the folder opened by the Baidu Cloud Disk client, or use the upload function to add the files to Baidu Cloud Disk. Make sure to check whether the file was successfully transferred in Baidu Cloud Disk after the upload is completed. That's it

How can I make money by publishing articles on Toutiao today? How to earn more income by publishing articles on Toutiao today! How can I make money by publishing articles on Toutiao today? How to earn more income by publishing articles on Toutiao today! Mar 15, 2024 pm 04:13 PM

1. How can you make money by publishing articles on Toutiao today? How to earn more income by publishing articles on Toutiao today! 1. Activate basic rights and interests: original articles can earn profits by advertising, and videos must be original in horizontal screen mode to earn profits. 2. Activate the rights of 100 fans: if the number of fans reaches 100 fans or above, you can get profits from micro headlines, original Q&A creation and Q&A. 3. Insist on original works: Original works include articles, micro headlines, questions, etc., and are required to be more than 300 words. Please note that if illegally plagiarized works are published as original works, credit points will be deducted, and even any profits will be deducted. 4. Verticality: When writing articles in professional fields, you cannot write articles across fields at will. You will not get appropriate recommendations, you will not be able to achieve the professionalism and refinement of your work, and it will be difficult to attract fans and readers. 5. Activity: high activity,

What is hiberfil.sys file? Can hiberfil.sys be deleted? What is hiberfil.sys file? Can hiberfil.sys be deleted? Mar 15, 2024 am 09:49 AM

Recently, many netizens have asked the editor, what is the file hiberfil.sys? Can hiberfil.sys take up a lot of C drive space and be deleted? The editor can tell you that the hiberfil.sys file can be deleted. Let’s take a look at the details below. hiberfil.sys is a hidden file in the Windows system and also a system hibernation file. It is usually stored in the root directory of the C drive, and its size is equivalent to the size of the system's installed memory. This file is used when the computer is hibernated and contains the memory data of the current system so that it can be quickly restored to the previous state during recovery. Since its size is equal to the memory capacity, it may take up a larger amount of hard drive space. hiber

GE universal remote codes program on any device GE universal remote codes program on any device Mar 02, 2024 pm 01:58 PM

If you need to program any device remotely, this article will help you. We will share the top GE universal remote codes for programming any device. What is a GE remote control? GEUniversalRemote is a remote control that can be used to control multiple devices such as smart TVs, LG, Vizio, Sony, Blu-ray, DVD, DVR, Roku, AppleTV, streaming media players and more. GEUniversal remote controls come in various models with different features and functions. GEUniversalRemote can control up to four devices. Top Universal Remote Codes to Program on Any Device GE remotes come with a set of codes that allow them to work with different devices. you may

How to use Copilot to generate code How to use Copilot to generate code Mar 23, 2024 am 10:41 AM

As a programmer, I get excited about tools that simplify the coding experience. With the help of artificial intelligence tools, we can generate demo code and make necessary modifications as per the requirement. The newly introduced Copilot tool in Visual Studio Code allows us to create AI-generated code with natural language chat interactions. By explaining functionality, we can better understand the meaning of existing code. How to use Copilot to generate code? To get started, we first need to get the latest PowerPlatformTools extension. To achieve this, you need to go to the extension page, search for "PowerPlatformTool" and click the Install button

Simple steps to upload your own music on Kugou Simple steps to upload your own music on Kugou Mar 25, 2024 pm 10:56 PM

1. Open Kugou Music and click on your profile picture. 2. Click the settings icon in the upper right corner. 3. Click [Upload Music Works]. 4. Click [Upload Works]. 5. Select the song and click [Next]. 6. Finally, click [Upload].

Detailed explanation of the role of .ibd files in MySQL and related precautions Detailed explanation of the role of .ibd files in MySQL and related precautions Mar 15, 2024 am 08:00 AM

Detailed explanation of the role of .ibd files in MySQL and related precautions MySQL is a popular relational database management system, and the data in the database is stored in different files. Among them, the .ibd file is a data file in the InnoDB storage engine, used to store data and indexes in tables. This article will provide a detailed analysis of the role of the .ibd file in MySQL and provide relevant code examples to help readers better understand. 1. The role of .ibd files: storing data: .ibd files are InnoDB storage

See all articles