<% Response.Expires = 0 %> Test page 0 for IXSSO tests.

Test 0 for IXSSO.

Create a query object, set and display query parameters.

<% set Q=Server.CreateObject("IXSSO.Query") Q.Columns = "filename, rank, vpath, author, title, size, write" Q.CiScope = "/specs" Q.CiFlags = "DEEP" Q.Query = "#filename *" Q.SortBy = "rank[d]" Q.Catalog = "e:\" Q.OptimizeFor = "recall" Q.AllowEnumeration = FALSE Q.MaxRecords = 20000 %> <% FOR I = 3 TO 7 %> > Hello World!
<% NEXT %>
Query =   <%= Q.Query%>
Columns = <%= Q.Columns%>
CiScope = <%= Q.CiScope%>
CiFlags = <%= Q.CiFlags%>
SortBy =  <%= Q.SortBy%>

Catalog =          <%= Q.Catalog%>
OptimizeFor =      <%= Q.OptimizeFor%>
AllowEnumeration = <%Response.Write(CStr(Q.AllowEnumeration))%>
MaxRecords =       <%= Q.MaxRecords%>