Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.0 KiB

  1. <% Response.Expires = 0 %>
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Test page 0 for IXSSO tests.</TITLE>
  5. </HEAD>
  6. <BODY BGCOLOR=FFFFFF LINK=0000FF ALINK=00DDDD>
  7. <H2>Test 0 for IXSSO.</H2>
  8. <P>
  9. Create a query object, set and display query parameters.
  10. </P>
  11. <%
  12. set Q=Server.CreateObject("IXSSO.Query")
  13. Q.Columns = "filename, rank, vpath, author, title, size, write"
  14. Q.CiScope = "/specs"
  15. Q.CiFlags = "DEEP"
  16. Q.Query = "#filename *"
  17. Q.SortBy = "rank[d]"
  18. Q.Catalog = "e:\"
  19. Q.OptimizeFor = "recall"
  20. Q.AllowEnumeration = FALSE
  21. Q.MaxRecords = 20000
  22. %>
  23. <% FOR I = 3 TO 7 %>
  24. <FONT SIZE=<%= I %>>
  25. Hello World!<BR>
  26. <% NEXT %>
  27. <FONT SIZE=3>
  28. <PRE>
  29. Query = <%= Q.Query%>
  30. Columns = <%= Q.Columns%>
  31. CiScope = <%= Q.CiScope%>
  32. CiFlags = <%= Q.CiFlags%>
  33. SortBy = <%= Q.SortBy%>
  34. Catalog = <%= Q.Catalog%>
  35. OptimizeFor = <%= Q.OptimizeFor%>
  36. AllowEnumeration = <%Response.Write(CStr(Q.AllowEnumeration))%>
  37. MaxRecords = <%= Q.MaxRecords%>
  38. </PRE>
  39. <BR>
  40. <BR>
  41. <!--#include virtual="/ixstest/srcform.inc"-->
  42. <BR>
  43. <BR>
  44. </BODY>
  45. </HTML>