主頁 > 知識庫 > Asp下實(shí)現(xiàn)多表單域無組件文件上傳的實(shí)例

Asp下實(shí)現(xiàn)多表單域無組件文件上傳的實(shí)例

熱門標(biāo)簽:福建外呼增值業(yè)務(wù)線路 綿陽防封電銷卡價格 宜賓語音外呼系統(tǒng)軟件 電銷機(jī)器人源碼網(wǎng)盤下載 中國辦理電信400電話 電銷機(jī)器人教育 伊春外呼業(yè)務(wù)系統(tǒng) 調(diào)度系統(tǒng)外呼 河北智能外呼系統(tǒng)軟件
最近經(jīng)常有人問到這類問題,在此轉(zhuǎn)貼一下,內(nèi)容:
1。數(shù)據(jù)庫表結(jié)構(gòu)(Access):
UserID:Text(保存上傳文件的用戶ID)
FileContentType:Text(用來保存上傳文件的類型,eg:"Application/msword",主要用來使用戶能正確下載此文件)
FileContent:OLE Object(保存文件數(shù)據(jù))

2。HTML文件
muploadfile.htm
Form name="upload_file" enctype="multipart/form-data" action="muploadfile.asp" method=post>
input type=hidden name="UserID" value="abc">
input type=hidden name="FileUploadStart"> '這里用來表示開始文件數(shù)據(jù)上傳
File to send: 

INPUT TYPE="file" name="file_up" size="30">br>
INPUT TYPE="file" name="file_up" size="30">br>
input type=hidden name="FileUploadEnd"> '這里用來表示文件數(shù)據(jù)結(jié)束
input type=submit value=Submit>
/Form>/P>P>
3。ASP文件
muploadfile.asp/P>P>%
Response.Expires=0
Function bin2str(binstr) 
    Dim varlen,clow,ccc,skipflag /P>P>    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 /P>P>
varByteCount = Request.TotalBytes
bnCRLF = chrB( 13 )  chrB( 10 )
binHTTPHeader=Request.BinaryRead(varByteCount)        
Divider = LEFTB( binHTTPHeader,  INSTRB( binHTTPHeader, bnCRLF ) - 1 )/P>P>'開始讀非文件域的數(shù)據(jù)
Do while lenB(binHTTPHeader)>46

    binHeaderData = LeftB(binHTTPHeader, INSTRB( binHTTPHeader, bnCRLF  bnCRLF )-1)
    strHeaderData=bin2str(binHeaderData)/P>P>    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)

        '判斷文件數(shù)據(jù)時候開始
    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/P>P>    binFieldValue=MIDB( binHTTPHeader, DataStart, DataEnd )
    strFieldValue=bin2str(binFieldValue)
    strFieldValue=Trim(strFieldValue)
    strFieldValue=Replace(strFieldValue,vbcrlf,vbnullstring)/P>P>    '非文件上傳域變量賦值
    execute strFieldName"="""strFieldValue""""

        
    binHTTPHeader=MIDB(binHTTPHeader,INSTRB( DataStart + 1, binHTTPHeader, divider ))

loop/P>P>'開始處理文件數(shù)據(jù)
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)

    '讀取上傳文件數(shù)據(jù)
    DataStart = INSTRB( binHTTPHeader, bnCRLF  bnCRLF ) + 4 
    DataEnd = INSTRB( DataStart + 1, binHTTPHeader, divider ) - DataStart

    If strFileName>"" Then

        binFieldValue=MIDB( binHTTPHeader, DataStart, DataEnd )

        '將上傳的文件寫入數(shù)據(jù)庫
        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")/P>P>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")/P>P>lngOffset=0
conChunkSize=1024
lngPictSize=rs("FileContent").ActualSize
Do While lngOffset  lngPictSize
  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
%>/P>P>就是這些了,希望此方法對大家能有所幫助。:)

標(biāo)簽:蘇州 那曲 河池 電商邀評 銅川 優(yōu)質(zhì)小號 延邊 新鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Asp下實(shí)現(xiàn)多表單域無組件文件上傳的實(shí)例》,本文關(guān)鍵詞  Asp,下,實(shí)現(xiàn),多,表單,域無,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Asp下實(shí)現(xiàn)多表單域無組件文件上傳的實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Asp下實(shí)現(xiàn)多表單域無組件文件上傳的實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章