当前位置: 网学 > 编程文档 > ASP > 正文

ASP智能搜索的实现

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/17
Key=2
Dim lngLenKey, strNew1, strNew2, i, strSubKey

''检测字符串的合法性,若不合法则转到出错页。出错页你可以根据需要
进行设定。
if InStr(strKey,"=")<>0 or InStr(strKey,"`")<>0 or InStr
(strKey,"''")<>0 or InStr(strKey," ")<>0 or InStr(strKey," ")<>0 or
InStr(strKey,"''")<>0 or InStr(strKey,chr(34))<>0 or InStr(strKey,"\")
<>0 or InStr(strKey,",")<>0 or InStr(strKey,"<")<>0 or InStr
(strKey,">")<>0 then
Response.Redirect "error.htm"
End If

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
%>
要实现智能搜索,其核心就是将搜索关键字进行自动分组。在此处,我们使
用了循环取长度为2的子串的方法。为什么不将子串长度定为1、3、4或其他呢?
这是因为若子串长度小于2即为1时,会失去将关键字分组的功能,而若子串长度
大于2,则会丢失一些词组。大家可以将 CONST lngSubKey=2改为其他数字试一试
,孰优孰劣自见分晓。
最后,别忘了将数据连接关闭,以释放资源。
<%
CNN.Close
Set CNN=Nothing
%>
至此,这个智能搜索引擎已经完成了。你还可以将其继续完善,比如添加分
页、突出显示等功能。好了,不耽误大家时间了,赶快去试一试吧。 ^_^
  • 上一篇资讯: pjblog2的参数第1/2页
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号