如何?檔案上傳並自動歸類功能?

來源:互聯網
上載者:User

upload.asp
  <form action=http://<%= Request. ServerVariables(SERVER_NAME)>/wdread.asp method=post>
  <p>主題: <input type=text name=subject><br>
      作者:<input name=author type=text><br>
      發布時間: <input name=date1 type=text><br>
      上傳檔案:<input type=file name=filename>
      發往URL: <input type=hidden name=TargetURL value=http://<%= Request.ServerVariables(SERVER_NAME)%>/users/<%=Request.ServerVariables(LOGON_USER) %> size=20><br>
  <input type=submit value=確定> </p>
  </form>


wdread.asp

<form enctype=multipart/form-data action=http://<%= Request.ServerVariables (SERVER_NAME) %>/scripts/cpshost.dll?PUBLISH?wdwriter.asp method=post name=form1>
  上傳檔案:<input type=file name=filename value=<%=session(filename)%>>
  <input type=hidden name=TargetURL value=http://<%= Request.ServerVariables (SERVER_NAME) %>/users/wdls >

  <input type=button name=upload value=確定>
  </form>


  <scripts language=VBScript>

' 在上傳時應對錶單域filename的值與upload.asp程式中的域值進行比較, 因為在upload.asp中輸入的檔案名稱在本程式中預置給表單域filename,一旦用戶端重新輸入新的檔案名稱後提交確認,會使程式wdwriter.asp中寫入資料庫的檔案名稱與實際上傳的檔案名稱不一樣, 導致網頁串連出錯.此處進行判斷,如果兩者相等,則立即上傳,否則取消操作.
  <!--

sub upload_onclick()

set myform=window.document.form1

tmp=myform.filename.value

    if strcomp(tmp,<%=session

 (filename)%>)=0 then

form1.submit

else
     msgbox 噢,您輸入的檔案名稱有誤,請重新輸入!

end if
 end sub
  -->
  </scripts>

wdwriter.asp
<%

Set mydata = Server.CreateObject (ADODB.Connection) mydata.Open DSN=xczh;UID=sa;PWD=;

' 開啟資料庫.

date1=session(date1)

 ' 取各表單域的值.取時間.
subject=session(subject)

 ' 取檔案主題.
author=session(subject)

' 取作者.
filename=session(filename)

' 取檔案名稱.
  TargetURL= session(TargetURL)

' 取檔案在伺服器中存放的物理地址.

  sqlstr=insert into wdlsb values( & sn & ,& subject & ', & date1 & ',&filename & ', & TargetURL &', & author & ')

' 寫資料庫並儲存.
  Mydata.Execute(sqlstr)
  %>

[1]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.