ASP实现智能搜索实现代码

时间:2022-09-18 14:31:31
  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. %>