How to Configure Site Server Search to Search for Meta Tags Without Typing @meta_ (277572)



The information in this article applies to:

  • Microsoft Site Server 3.0

This article was previously published under Q277572

SUMMARY

To retrieve HTML documents from a Site Server Search catalog by using meta tag, you must pass the query string @meta_<meta> = <value>.

MORE INFORMATION

To make this work for all search pages, find out where the query string is generated (Searchright.asp is used in the ,example pages), and then modify the Query string to pre-pend "@all " to the front of the query string. EXAMPLE In Searchright.asp, locate the following lines of code:
Q.MaxRecords = 25
Q.AllowEnumeration = true
Q.SortBy = "Rank[d],DocTitle"
				
Add the following line of code:
Q.Query="@all " & Q.Query
				

Modification Type:MajorLast Reviewed:12/7/2000
Keywords:kbbug KB277572