您现在的位置:计算机技术学习网 > 技术中心 > WEB编程 > ASP >

图片数据的存和取示例

来源:网络收集 责任编辑:栏目编辑 发表时间:2013-07-01 03:17 点击:
图片数据存入数据库:
    sqlstr="select * from "&tbname&" where id is null"
    set rs=server.createobject("adodb.recordset")
    rs.Open sqlstr,conn,1,3
    rs.AddNew ()
    rs("title")=title
    rs("filename")=filename
    rs("filetype")=filetype
    rs("thelevel")=thelevel
    rs("uploaddate")=date()
    rs("uploadip")=request.ServerVariables("REMOTE_ADDR")
    rs("contenttype")=contenttype
    rs("data").AppendChunk (binstr)
    rs("size")=size
    rs("offset")=offset
    rs.Update
    rs.Close()

[本文共有 2 页,当前是第 1 页] <<上一页 下一页>>



读取显示:
  rs.Open sqlstr,conn,3
  if not rs.EOF then
      contenttype=rs("contenttype")
      binstr=rs("data").GetChunk(rs("size")+rs("offset"))
      if rs("offset")=1 then
        binstr=midb(binstr,2)
      end if
      if instr(contenttype,"text/")=1 or _
        instr(contenttype,"image/")=1 or _
        instr(contenttype,"application/msword")=1 then
        response.contenttype=trim(contenttype)
        response.binarywrite binstr
      else
        response.addheader "Content-Disposition","attachment;
        filename="""&rs("filename")&""""
        response.contenttype=trim(contenttype)
        response.binarywrite binstr
      end if
      if request("preview")<>"yes" then
        sqlstr="update "&tbname&" set downtimes=downtimes+1
        where id="&fileid
        conn.Execute sqlstr
      end if
  end if
说明:
对于超长的二进制数据(如图像数据)要使用fieldname.AppendChunk() 和
fieldname.GetChunk()来读写。

[本文共有 2 页,当前是第 2 页] <<上一页 下一页>>

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • WAP常见问题问答大全(四)
    • ASP开发必备:WEB打印代码大全
    • ASP调用系统ping命令
    • asp缓存技术
    • ASP教程:第三篇 ASP基础
    • 用ASP+XML打造留言本(4)
    • 关于ASP Recordset 分页出现负数解决方法及建议
    • 用asp怎样编写文档搜索页面(5)
    • ASP处理多关键词查询实例代码
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1