标题:求助!帮忙看看代码有什么问题
取消只看楼主
肖走
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2005-9-26
得分:0 
if a="" then response.redirect"error.htm"

else if b="" then sql="Select * from data where 开始日期='"&a&"'"
else if b<>"" then sql="Select * from data where 开始日期 between '"&a&"' and '"&b&"'"
else if c<>"请选择" then sql=sql&" and 设备='"&c&"'"
else if d<>"请选择" then sql=sql&" and 主要告警信息='"&d&"'"
else if e<>"" then sql=sql&" and 故障原因='"&e&"'"
else if f<>"" then sql=sql&" and 维护区='"&f&"'"
else if g<>"" then sql=sql&" and 处理人='"&g&"'"
else if h<>"" then sql=sql&" and 客户名称='"&h&"'"

end if
这样行吗?最后一个else不知道该怎么办呢?

2005-12-31 15:02
肖走
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2005-9-26
得分:0 
谢谢!
还是有问题,在本机上测试提示,“错误类型:
Microsoft VBScript 编译器错误 (0x800A03EA)
语法错误
/datesys/advanced_query_1.asp, line 38
elseif b="" then sql="Select * from data where 开始日期='"&a&"'"
在服务器上根本就打不开网页!

2005-12-31 15:12
肖走
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2005-9-26
得分:0 

日期的问题这样解决的:
Set rs = Server.CreateObject ("ADODB.Recordset")

if a="" then
response.redirect"error.htm"
else sql=sql
end if
if b="" then
sql="Select * from data where 开始日期='"&a&"'"
else
sql="Select * from data where (开始日期 between '"&a&"' and '"&b&"')"
end if
if c<>"请选择" then
sql=sql&" and 设备='"&c&"'"
end if
if d<>"请选择" then
sql=sql&" and 主要告警信息='"&d&"'"
end if
if e<>"" then
sql=sql&" and 故障原因='"&e&"'"
end if
if f<>"" then
sql=sql&" and 维护区='"&f&"'"
end if
if g<>"" then
sql=sql&" and 处理人='"&g&"'"
end if
if h<>"" then
sql=sql&" and 客户名称='"&h&"'"
end if
rs.Open sql,conn,1,3
但是选择其他条件如:设备=GZ-BR1时提示:
错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[Microsoft][ODBC Microsoft Access Driver] 语法错误 (操作符丢失) 在查询表达式 '开始日期='2005-12-30' and 设备='GZ-BR1'' 中。
/datesys/advanced_query_1.asp, 第 63 行


2005-12-31 15:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-41092-1-1.html




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

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