Jag har en asp fil som ser ut såhär
"<%
Set objQuery= Server.CreateObject("ixsso.Query")
objQuery.Query = "(@contents " & Request.Form("keywords") & ")"
objQuery.MaxRecords = 200
objQuery.Catalog = "D:\inetpub\www\minhemsida"
objQuery.SortBy = "rank[d]"
objQuery.Columns = "write, rank, doctitle, vpath, size, characterization"
cirestriction=(%cirestriction%) and not #vpath *\_vti_cnf
Set RS = objQuery.CreateRecordSet("nonsequential")
While Not RS.EOF
%>
<%= RS.absolutePosition%>. <a href="<%=RS("vpath")%>"><%=RS("kammar")%></a><br>
<%=RS("characterization")%>...<br>
<%=RS("rank")\10%>% <%=RS("write")%><br><br>
<%
RS.MoveNext
Wend
%>"
När jag testar och söker så får jag detta felmeddelande:
"CreateRecordset error '8004166a'
Expecting phrase.
query.asp, line 8
"
Vad har jag gjort för fel??
Kan någon hjälpa mig med detta?!