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]]