服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - ASP教程 - ASP实现智能搜索实现代码

ASP实现智能搜索实现代码

2019-09-24 10:24asp教程网 ASP教程

asp下智能搜索功能的实现,方便大家学习

  1. <%  
  2. Function AutoKey(strKey)  
  3.  
  4. Const lngSubKey=2  
  5. lngLenKey=Len(strKey)  
  6.  
  7. Select Case lngLenKey  
  8. Case 0   '若为空串,转到出错页   
  9. Response.Redirect "Error.htm"  
  10. Case 1   '若长度为1,则不设任何值   
  11. strNew1=""  
  12. strNew2=""  
  13. Case Else  '若长度大于1,则从字符串首字符开始,循环取长度为2的子字符串作为查询条件   
  14.  
  15. For i=1 To lngLenKey-(lngSubKey-1)  
  16.  
  17. strSubKey=Mid(strKey,i,lngSubKey)  
  18.  
  19. strNew1=strNew1 & " Or U_Name like '%" & strSubKey & "%'"  
  20. strNew2=strNew2 & " Or U_Info like '%" & strSubKey & "%'"  
  21. Next  
  22. End Select  
  23.  
  24. '得到完整的SQL语句   
  25. AutoKey="Select * from T_Sample where U_Name like '%" & strKey & "%' Or U_Info like '%" & strKey & "%'" & strNew1 & strNew2  
  26. End Function  
  27. %>  

延伸 · 阅读

精彩推荐