当前位置: 首页 > 图文教程 > 网络编程 > ASP > 组合查询之核心:拼接字符串

ASP
分享一段代码show.asp?id=26变成show/?26的形式
多域名一网站时如果返回最原来的域名
[原创]完美解决ASP 不能更新。数据库或对象为只读。
5天学会asp
TSYS中生成静态页时溢出: ''CInt''
对象标记具有无效的 ''MSWC.MyInfo'' ProgID
[原创]随机增加网站点击的一个不错的方法
Microsoft JET Database Engine 错误 ''80004005'' 未指定的错误的完美解决方法
反SPAM新思路—换Z-BLOG的验证码!
七步倒┈→专用asp后门
asp下实现代码的“运行代码”“复制代码”“保存代码”功能源码
使用ASP实现网站的“目录树”管理的代码
ShowPage 显示“上一页 下一页”等信息的封装代码
[原创]站长感慨asp编程究竟何去何从
响应对象 错误 ''ASP 0185 : 80020003'' 缺少默认属性
[原创]asp下用实现模板加载的的几种方法总结
[原创]asp获取URL参数的几种方法分析总结
Access数据库中“所有记录中均未找到搜索关键字”的解决方法
ASP程序中输出Excel文件实例一则
ASP应用中如何限制同一表单被多次提交

ASP 中的 组合查询之核心:拼接字符串


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

'组合查询之核心:拼接字符串
'功能:定义查询条件,定义返回集,定义排序方式
'平台:Windows 2000 Server + IIS5.0 + SQL Server 2000
'语言:VBScript
'作者:Cheery_Ke
'***********Start************
'**************读取变量*************
.
.
.
seaLastUpdTime = Request("seaLastUpdTime1")&"-"&Request("seaLastUpdTime2")&"-"&Request("seaLastUpdTime3")

returnItem = Request("ReturnItem")'******个人设定要返回的字段

'Response.Write returnItem

'***********拼接字符串***************************

If returnItem <> "" Then

SQL = "Select ComID,ComName, " & returnItem & " From ClientInfo Where ISInva = 0"

Else

SQL = "Select ComID,ComName From ClientInfo where IsInva = 0"

End If

If seaComName <> "" Then

SQL = SQL & " And ComName Like '%"&seaComName&"%'"

End If

If seanexus1 <> "" Then

SQL = SQL & " And nexus like '%"&seanexus1&"%'"

End If

If seanexus2 <> "" Then

SQL = SQL & " And nexus like '%"&seanexus2&"%'"

End If

If seaComType <> "" Then

SQL = SQL & " And ComType = '"&seaComType&"'"

End If

If seaComProv <> "" Then

SQL = SQL & " And ComProv = '"&seaComProv&"'"

End If

If seaTimeFrist11 <> "" Then

seaTimeFrist1 = seaTimeFrist11&"-"&seaTimeFrist12&"-"&seaTimeFrist13

SQL = SQL & " And TimeFrist > '"&seaTimeFrist1&"'"

End If

If Request(seaTimeFrist1) <> "" Then

seaTimeFrist1 = Request(seaTimeFrist1)

SQL = SQL & " And TimeFrist > '"&seaTimeFrist1&"'"

End If

If seaTimeFrist21 <> "" Then

seaTimeFrist2 = seaTimeFrist21&"-"&seaTimeFrist22&"-"&seaTimeFrist23

SQL = SQL & " And TimeFrist < '"&seaTimeFrist2&"'"

End If

If Request(seaTimeFrist2) <> "" Then

seaTimeFrist2 = Request(seaTimeFrist2)

SQL = SQL & " And TimeFrist < '"&seaTimeFrist2&"'"

End If

If seaNearTime11 <> "" Then

seaNearTime1 = seaNearTime11&"-"&seaNearTime12&"-"&seaNearTime13

SQL = SQL & " And TimeNear > '"&seaNearTime1&"'"

End If

If Request(seaNearTime1) <> "" Then

seaNearTime1 = Request(seaNearTime1)

SQL = SQL & " And TimeNear > '"&seaNearTime1&"'"

End If

If seaNearTime21 <> "" Then

seaNearTime2 = seaNearTime21&"-"&seaNearTime22&"-"&seaNearTime23

SQL = SQL & " And TimeNear < '"&seaNearTime2&"'"

End If

If Request(seaNearTime2) <> "" Then

seaNearTime2 = Request(seaNearTime2)

SQL = SQL & " And TimeNear < '"&seaNearTime2&"'"

End If

If seaAppTime11 <> "" Then

seaAppTime1 = seaAppTime11&"-"&seaAppTime12&"-"&seaAppTime13

SQL = SQL & " And AppTime > '"&seaAppTime1&"'"

End If

If Request(seaAppTime1) <> "" Then

seaAppTime1 = Request(seaAppTime1)

SQL = SQL & " And AppTime > '"&seaAppTime1&"'"

End If

If seaAppTime21 <> "" Then

seaAppTime2 = seaAppTime21&"-"&seaAppTime22&"-"&seaAppTime23

SQL = SQL & " And AppTime < '"&seaAppTime2&"'"

End If

If Request(seaAppTime2) <> "" Then

seaAppTime2 = Request(seaAppTime2)

SQL = SQL & " And AppTime < '"&seaAppTime2&"'"

End If

If Request("seaLastUpdTime1") <> "" Then

// seaLastUpdTime0 = seaLastUpdTime1&"-"&seaLastUpdTime2&"-"&seaLastUpdTime3

SQL = SQL & " And LastUpdTime > '"&seaLastUpdTime&"'"

End If

If Request(seaLastUpdTime1) <> "" Then

//seaLastUpdTime0 = Request(seaLastUpdTime0)

SQL = SQL & " And LastUpdTime > '"&seaLastUpdTime&"'"

En