I get this error on a machine running Win98 and PWS:
Provider error '80004005'
Unspecified error
/SIE/projectlist.asp, line 14
in the following code:
<% @Language=VBScript %>
<% Option Explicit %>
<% Response.Buffer = True %>
<%
Dim strProvider
strProvider = "DSN=SIEtest"
Dim oRSpl
Dim strQuery
Set oRSpl= Server.CreateObject ("ADODB.Recordset"
oRSpl.CursorType = 3
oRSpl.CursorLocation = 3
strQuery = "SELECT * FROM projects"
oRSpl.Open strQuery, strProvider
set oRSpl.ActiveConnection = Nothing
%>
.....
Now this worked on a WIN 2000 machine w/IIS 5.0 ( I don't think I have changed anything)what is the matter? If it has to do with having later versions of ASP and ADO how can I get the Newer versions ans also is it possible to put them on the Win98 machine?
Provider error '80004005'
Unspecified error
/SIE/projectlist.asp, line 14
in the following code:
<% @Language=VBScript %>
<% Option Explicit %>
<% Response.Buffer = True %>
<%
Dim strProvider
strProvider = "DSN=SIEtest"
Dim oRSpl
Dim strQuery
Set oRSpl= Server.CreateObject ("ADODB.Recordset"
oRSpl.CursorType = 3
oRSpl.CursorLocation = 3
strQuery = "SELECT * FROM projects"
oRSpl.Open strQuery, strProvider
set oRSpl.ActiveConnection = Nothing
%>
.....
Now this worked on a WIN 2000 machine w/IIS 5.0 ( I don't think I have changed anything)what is the matter? If it has to do with having later versions of ASP and ADO how can I get the Newer versions ans also is it possible to put them on the Win98 machine?