加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

ASP中含有可使搜索功能有限制关键字作用的代码段

发布时间:2023-09-21 14:45:25 所属栏目:Asp教程 来源:
导读:<%

&#39;******************************

&#39;函数:CheckQuery(ByVal str)

&#39;参数:str ----搜索的字符串

&#39;作者:阿里西西

&#39;日期:2007/7/15

&#39;描述:限制搜索的关键字
<%
 
'******************************
 
'函数:CheckQuery(ByVal str)
 
'参数:str ----搜索的字符串
 
'作者:阿里西西
 
'日期:2007/7/15
 
'描述:限制搜索的关键字
 
'示例:CheckQuery(str)
 
'******************************
 
 Public Function CheckQuery(ByVal str)
 
  Dim FobWords, i, keyword
 
  keyword = str
 
  On Error Resume Next
 
  FobWords = Array(91, 92, 304, 305, 430, 431, 437, 438, 12460, 12461, 12462, 12463, 12464, 12465, 12466, 12467, 12468, 12469, 12470, 12471, 12472, 12473, 12474, 12475, 12476, 12477, 12478, 12479, 12480, 12481, 12482, 12483, 12485, 12486, 12487, 12488, 12489, 12490, 12496, 12497, 12498, 12499, 12500, 12501, 12502, 12503, 12504, 12505, 12506, 12507, 12508, 12509, 12510, 12532, 12533, 65339, 65340)
 
  For i = 1 To UBound(FobWords, 1)
 
   If InStr(keyword, ChrW(FobWords(i))) > 0 Then
 
    CheckQuery = False
 
    Exit Function
 
   End If
 
  Next
 
  FobWords = Array("~", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "_", "+", "=", "`", "[", "]", "{", "}", ";", ":", """", "'", "<", ">", ".", "/", "/", "|", "?", "about", "after", "all", "also", "an", "and", "another", "any", "are", "as", "at", "be", "because", "been", "before", "being", "between", "both", "but", "by", "came", "can", "come", "could", "did", "do", "each", "for", "from", "get", "got", "had", "has", "have", "he", "her", "here", "him", "himself", "his", "how", "if", "in", "into", "is", "it", "like", "make", "many", "me", "might", "more", "most", "much", "must", "my", "never", "now", "of", "on", "only", "or", "other", "our", "out", "over", "said", "same", "see", "should", "since", "some", "still", "such", "take", "than", "that", "the", "their", "them", "then", "there", "these", "they", "this")
 
  keyword = Left(keyword, 100)
 
  keyword = Replace(keyword, "!", " ")
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章