服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - asp实现限制搜索的关键字的函数

asp实现限制搜索的关键字的函数

2019-10-11 10:42asp代码网 ASP教程

asp实现限制搜索的关键字的函数

  1. <%  
  2. '******************************  
  3. '函数:CheckQuery(ByVal str)  
  4. '参数:str ----搜索的字符串  
  5. '作者:阿里西西  
  6. '日期:2007/7/15  
  7. '描述:限制搜索的关键字  
  8. '示例:CheckQuery(str)  
  9. '******************************  
  10.  Public Function CheckQuery(ByVal str)  
  11.   Dim FobWords, i, keyword  
  12.   keyword = str  
  13.   On Error Resume Next  
  14.   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)  
  15.   For i = 1 To UBound(FobWords, 1)  
  16.    If InStr(keyword, ChrW(FobWords(i))) > 0 Then  
  17.     CheckQuery = False  
  18.     Exit Function  
  19.    End If  
  20.   Next  
  21.   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")  
  22.   keyword = Left(keyword, 100)  
  23.   keyword = Replace(keyword, "!"" ")  
  24.   keyword = Replace(keyword, "]"" ")  
  25.   keyword = Replace(keyword, "["" ")  
  26.   keyword = Replace(keyword, ")"" ")  
  27.   keyword = Replace(keyword, "("" ")  
  28.   keyword = Replace(keyword, " "" ")  
  29.   keyword = Replace(keyword, "-"" ")  
  30.   keyword = Replace(keyword, "/"" ")  
  31.   keyword = Replace(keyword, "+"" ")  
  32.   keyword = Replace(keyword, "="" ")  
  33.   keyword = Replace(keyword, ","" ")  
  34.   keyword = Replace(keyword, "'"" ")  
  35.   For i = 0 To UBound(FobWords, 1)  
  36.    If keyword = FobWords(i) Then  
  37.     CheckQuery = False  
  38.     Exit Function  
  39.    End If  
  40.   Next  
  41.   CheckQuery = True  
  42.  End Function  
  43. %>  

延伸 · 阅读

精彩推荐