<%
set objQuery=server.createobject("IXSSO.Query")
with objquery
.catalog="system"
.maxrecords=100
.qury="(#filename *.htm*) and jeanie"
.columns="path"
set rsresults=.createrecordset("sequential")
end with
if not rsresults.eof then
while not rsresults.eof
response.write rsresults.fields(0).value & "<br />"
rsresult.movenext
wend
end if
%>