欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP实现智能搜索实现代码

程序员文章站 2022-06-21 22:50:17
<% function autokey(strkey) const lngsubkey=2 lnglenkey=len(strkey) selec...
<%
function autokey(strkey)

const lngsubkey=2
lnglenkey=len(strkey)

select case lnglenkey
case 0   '若为空串,转到出错页 
response.redirect "error.htm"
case 1   '若长度为1,则不设任何值 
strnew1=""
strnew2=""
case else  '若长度大于1,则从字符串首字符开始,循环取长度为2的子字符串作为查询条件 

for i=1 to lnglenkey-(lngsubkey-1)

strsubkey=mid(strkey,i,lngsubkey)

strnew1=strnew1 & " or u_name like '%" & strsubkey & "%'"
strnew2=strnew2 & " or u_info like '%" & strsubkey & "%'"
next
end select

'得到完整的sql语句 
autokey="select * from t_sample where u_name like '%" & strkey & "%' or u_info like '%" & strkey & "%'" & strnew1 & strnew2
end function
%>