当前位置: 首页 > 图文教程 > 网络编程 > ASP > 关于Adodb.Stream的写数据库数据到客户端文件的实践

ASP
SQL数据操作基础(中级) 6
SQL数据操作基础(中级) 7
SQL数据操作基础(中级) 8
SQL数据操作基础(中级) 9
SQL数据操作基础(中级) 10
XML DOM介绍和例子(一)
XML DOM介绍和例子(二)
XML DOM介绍和例子(三)
ADO 光 标 基 础 (1)
ADO 光 标 基 础 (2)
SQL语言快速入门之三
ASP+学习笔记(一)
ASP+学习笔记(二)
ASP+学习笔记(三)
ASP+学习笔记(四)
ASP+学习笔记(五)
ASP+配置 — ASP+配置概念(一)
Microsoft 脚本编码器(4) --- 编码示例
VPN技术详解(上)
VPN技术详解(中)

ASP 中的 关于Adodb.Stream的写数据库数据到客户端文件的实践


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 36 ::
收藏到网摘: n/a

 

    这是一个从服务器数据库直接下数据到客户端文件的例子,文件名和扩展名可以根据需要随便写。new/temp.htm要求真实存在,其实没有什么作用,只是引导一下,否则不能对stram数据进行写操作。
    网络上流传的这方面的东西不少,但多数是copy来的,很简单的事情搞得那么复杂。真正经过实践的东东少得可怜。于是自己写了一个,虽然简单,也有些问题,但是copy下去就可以用了。有问题的朋友可以跟我联系,好一起学习。

filemystream=server.mappath("new") & "\temp.htm"
 Set MyStream=Server.CreateObject("Adodb.Stream")

MyStream.Type = 1
MyStream.Mode=3
MyStream.Open
MyStream.LoadFromFile(filemystream)

  Response.ContentType="application/octet-stream"
  Response.AddHeader "Content-Disposition:","attachment; filename=" & "bk.txt"
  Range=Mid(Request.ServerVariables("HTTP_RANGE"),7)

    response.write "姓名"
    response.write "账号"
    response.write "地址"
    response.write "说明"
    cr=chr(13)&chr(10)
    response.write(cr)

 while not rs.eof
  response.write rs("name")
  response.write rs("accno")
  response.write rs("address")
  response.write rs("note")
  response.write(cr)
  RS.MoveNext
wend

rs.close
set rs=nothing
Conn.Close
Set Conn=Nothing
Mystream.close
set Mystream=nothing