| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 520 人关注过本帖
标题:asp无法按指定搜索导出excel
只看楼主 加入收藏
dhdhzzw
Rank: 1
等 级:新手上路
帖 子:949
专家分:0
注 册:2007-8-13
结帖率:81.82%
收藏
 问题点数:0 回复次数:0 
asp无法按指定搜索导出excel
<%  
 
dim s,sql,filename,fs,myfile,x  
 
Set fs = server.CreateObject("scripting.filesystemobject")  
'--假设你想让生成的EXCEL文件做如下的存放  
filename = Server.MapPath("users.xls")  
'--如果原来的EXCEL文件存在的话删除它  
if fs.FileExists(filename) then  
    fs.DeleteFile(filename)  
end  if  
'--创建EXCEL文件  
set myfile = fs.CreateTextFile(filename,true)  
 
'Set rs = Server.CreateObject("ADODB.Recordset")  
'--从数据库中把你想放到EXCEL中的数据查出来  
'strSql = "select * from productinfo where maijia='"&sessname&"'and maichu='0' order by productid desc"  
'rs.Open  sql,conn  
StartTime = Request("StartTime")
EndTime = Request("EndTime")
StartEndTime = "AddTime between #"& StartTime &" 00:00:00# and #"& EndTime &" 23:59:59#"


[bo]strSql = "select * from productinfo where maijia='"&sessname&"'and maichu='0' order by productid desc "[/bo]  //这样写导出的excel文件会提示无法提取文件
[bo]strSql = "select * from productinfo "[/bo] //这样写就可以将数据导出excel
[bo]请问该怎样按搜索语句导出excel,我就想以第一种搜索要求导出到excel[/bo]

'response.write(strsql)
Set rstData =conn.execute(strSql)
if not rstData.EOF and not rstData.BOF then  
 
    dim  trLine,responsestr  
    strLine=""  
    For each x in rstData.fields  
        strLine = strLine & x.name & chr(9)  
   Next  
 
'--将表的列名先写入EXCEL  
    myfile.writeline strLine  
 
    Do while Not rstData.EOF  
        strLine=""  
 
        for each x in rstData.Fields  
            strLine = strLine & x.value &  chr(9)  
        next  
        myfile.writeline  strLine  
 
        rstData.MoveNext  
    loop  
 
end if  

Response.Write  "生成EXCEL文件成功,点击<a href=""users.xls"" target=""_blank"">下载</a>!"

rstData.Close  
set rstData = nothing
Conn.Close
Set Conn = nothing
%>

[[it] 本帖最后由 dhdhzzw 于 2008-4-21 13:38 编辑 [/it]]
搜索更多相关主题的帖子: excel asp 搜索 
2008-04-21 13:36
快速回复:asp无法按指定搜索导出excel
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.011832 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved