zoukankan      html  css  js  c++  java
  • asp 文件上传 代码

    文件1.上传界面文件 upload.htm

    <html>

    <head>
    <meta
    http-equiv="Content-Language" content="zh-cn">
    <meta
    http-equiv="Content-Type" content="text/html;
    charset=gb2312">
    <title>文件上传</title>
    </head>

    <body>
    <form
    method="POST" action="SaveFile.asp">
    文件上传:<input type="file"
    name="file" size="42">&nbsp;<input type="submit" value="提交"
    name="bb">
    </form>

    </body>

    </html>


    文件2.保存上传文件
    SaveFile.asp

    <%
    dim file,filename,houzui
    file =
    Request.Form("file")

    if file=""
    then
    response.write"<script>alert('请选择要上传的文件!');window.location.href='upload.htm';</script>"
    else
    houzui=mid(file,InStrRev(file,
    "."))

    if houzui=".gif" or houzui=".jpg" or houzui=".bmp" then
    '允许上传的文件类型
    filename=year(date) & month(date) & day(date) &
    Hour(time) & minute(time) & second(time) & houzui

    Set
    objStream = Server.CreateObject("ADODB.Stream")
    objStream.Type =
    1
    objStream.Open
    objStream.LoadFromFile file
    objStream.SaveToFile
    Server.MapPath(filename),2
    objStream.Close

    //============================把文件名写入数据库,如无需要,可删除此段代码!
    Set
    conn = Server.CreateObject("ADODB.Connection")
    conn.open "DRIVER={Microsoft
    Access Driver (*.mdb)}; DBQ=" & Server.MapPath("mb.mdb")
    set
    rs=server.CreateObject("adodb.recordset")
    rs.open "select*from
    img",conn,1,2
    rs.addnew
    rs("name")=filename
    rs.update
    set
    rs=nothing
    conn.close
    set
    conn=nothing
    //========================================

    response.write"<script>alert('图片上传成功!');window.location.href='upload.htm';</script>"
    else
    response.write"<script>alert('不允许上传"
    & houzui &
    "的格式!');window.location.href='upload.htm';</script>"
    end if
    end
    if
    %>

  • 相关阅读:
    【转】BP神经网络
    【转】Matlab的regionprops详解
    【转】本人常用资源整理(ing...)
    【转】LDA-linear discriminant analysis
    [转]推荐几个机器学习算法及应用领域相关的中国大牛:
    【转】机器学习资料推荐
    《转贴》机器学习 机器视觉 图像处理 牛人牛站
    [转]LLE
    UVA10651
    UVA10051
  • 原文地址:https://www.cnblogs.com/rainstorm/p/2883152.html
Copyright © 2011-2022 走看看