asfman
android developer
posts - 90,  comments - 213,  trackbacks - 0
以下步骤说明了如何使用此方法向浏览器写入一个 Excel 文件:
1. 创建一个新的 ASP 页并粘贴以下代码:
<%
            'Set the content type to the specific type that you are sending.
            Response.ContentType = "application/x-msexcel"
            Const adTypeBinary = 1
            Dim strFilePath
            strFilePath = "C:\ExcelFiles\Excel1.xls" 'This is the path to the file on disk.
            Set objStream = Server.CreateObject("ADODB.Stream")
            objStream.Open
            objStream.Type = adTypeBinary
            objStream.LoadFromFile strFilePath
            Response.BinaryWrite objStream.Read
            objStream.Close
            Set objStream = Nothing
            %>
            
2. 将该文件保存到 Web 服务器。
3. 在浏览器中,浏览到该文件。
posted on 2007-11-17 08:54 汪杰 阅读(444) 评论(0)  编辑 收藏 引用 所属分类: asp(javascrpt)
只有注册用户登录后才能发表评论。

<2006年10月>
24252627282930
1234567
891011121314
15161718192021
22232425262728
2930311234

常用链接

留言簿(15)

随笔分类(1)

随笔档案(90)

文章分类(727)

文章档案(712)

相册

收藏夹

http://blog.csdn.net/prodigynonsense

友情链接

最新随笔

搜索

  •  

积分与排名

  • 积分 - 466814
  • 排名 - 6

最新随笔

最新评论

阅读排行榜

评论排行榜