Help and Support
 

powered byLive Search

Specifying a Catalog in ASP Code (IXSSO Query)

Article ID:238791
Last Review:August 18, 1999
Revision:1.0
This article was previously published under Q238791

SYMPTOMS

On a server with multiple catalogs, any query page that is not querying the default catalog needs to specify in its code the catalog it is querying against. This article provides examples of how to specify the catalog within ASP files that are using the IXSSO object to query Index Server.

RESOLUTION

NOTE: This example uses the IXSSO object and is based on Query.asp, which is installed by default with the Index Server.

In the Query.asp page, find the section that looks like the following:

set Q = Server.CreateObject("ixsso.Query")
        set util = Server.CreateObject("ixsso.Util")
    Q.Query = CompSearch
    Q.SortBy = "rank[d]"
    Q.Columns = "DocTitle, vpath, filename, size, write, characterization, rank"
    Q.MaxRecords = 300
				

To specify a catalog in the ASP page, add a line so that section appears follows:

set Q = Server.CreateObject("ixsso.Query")
        set util = Server.CreateObject("ixsso.Util")
    Q.CATALOG="<catalogname>"
    Q.Query = CompSearch
    Q.SortBy = "rank[d]"
    Q.Columns = "DocTitle, vpath, filename, size, write, characterization, rank"
    Q.MaxRecords = 300
				

The Q.Catalog line that you add will have a value equal to the name of your catalog as it appears in the Microsoft Management Console (MMC) for Index Server.

APPLIES TO
Microsoft Index Server 2.0

Back to the top

Keywords: 
kbpending kbprb KB238791

Article Translations

 

Other Support Options

  • Need More Help?
    Contact a Support professional by Email, Online or Phone.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.