<%
Dim S_Key,RST,StrSQL
S_Key = Trim(Request("key")) 失掉搜刮关头字的值
If S_Key <>"" then
Set RST=Server.CreateObject("ADODB.RecordSet")
StrSQL=AutoKey(S_Key) 此处利用自界说函数 AutoKey(),该函数为完成智能搜刮的中心
RST.Open StrSQL,CNN,3,2 失掉搜刮后的纪录
If RST.BOF And RST.EOF Then
%>
<font color="#FF0000">未找就任何了局!!!</font>
<%
Else
%>
搜刮称号为“<font color="#FF0000"><%= S_Key %></font>”的项,共找到 <font color="#FF0000"><%= RST.RecordCount %></font> 项:<p>
<%
While Not RST.EOF 遍历全部纪录集,显示搜刮到的信息并设置链接
%>
<!-- 此处可设为你所需求的链接方针 -->
<font style="font: 12pt 宋体"><a href="info.asp?ID=<%= RST("ID") %>" target="_blank"><%= RST("U_Name") %></a></font>
<!-- 显示局部具体内容 -->
<font style="font: 9pt 宋体"><%= Left(RST("U_Info"),150) %></font><p>
<%
RST.MoveNext
Wend
RST.Close
Set RST=Nothing
End If
End If
%>
在下面的代码中,有一个自界说函数 AutoKey ,该函数是完成智能搜刮的中心地点。代码以下:
<%
Function AutoKey(strKey)
CONST lngSubKey=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改成其他数字试一试,孰优孰劣自见分晓。