Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Index Server Error

Status
Not open for further replies.

larryman

Programmer
Jun 16, 2000
63
US
Guys,
I can't figure out why i keep getting this error maybe it's from index server itself. The script finds it difficult ot instanciate the component when i run this code.
Do i need to personally install the component or could it be ASP 2.0 versus ASP 3.0 problem.

ERROR MESSAGE IS BELOW


Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/webapps/helpdesk/basicquery.asp, line 15
Invalid class string


Thanks
larry

<%
Option Explicit
%>
<HTML>
<HEAD>

<TITLE>Query Results</TITLE>
</HEAD>
<BODY>

<%
Dim objQuery ' As ixsso Query
Dim rsQuery ' As ADODB.Recordset

Set objQuery = Server.CreateObject(&quot;ixsso.Query&quot;)
objQuery.Query = Request(&quot;txtQuery&quot;)
objQuery.Column=&quot;filename,vpath,Doctile&quot;
objQuey.Catalog = &quot;f:\usersupport&quot;
objquery.Maxrecords = 50

Set rsQuery = objQuery.CreateRecordset(&quot;nonsequential&quot;)

%>
<h3>Search Results<h3>
<%
IF rsQuery.EOF Then
%>
<Font color=#FF0000>
NO documents were found that
matched your query.
</font>
<%
Else
%>
<table>
<tr>
<th>Title</th>
</tr>
<%
Do While Not rsQuery.EOF
If rsQuery(&quot;doctitle&quot;) <> &quot;&quot; Then
%>
<tr>
<td><a href=&quot;<% = rsQuery(&quot;vpath&quot;) %>&quot;>
<% = rsQuery(&quot;doctitle&quot;) %></a>
</td>
</tr>
<%
End if
rsQuery.MoveNext
Loop
Response.Write &quot;</table>&quot;

End if
%>
</body>
</html>

</BODY>
</HTML>.

Oysterbar ride to success. Keep Riding
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top