I need to test a Lotus Notes ODBC connection from asp.
I have named the ODBC system data source 'LotusTest'
The error reads....
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Lotus][ODBC Lotus Notes]Unable to find path to server
/connectiontest/connectiontest.asp, line 12
my code includes......
<%
dim myConn
set myConn = server.createobject("ADODB.Connection"
myConn.Open "LotusTest"
If myConn.state = 1 then
response.write("Connection opened successfully<p>"
else
response.write("Error. Connection could not be opened.<P>"
end if
myconn.close
set myConn = Nothing
%>
help me please
I have named the ODBC system data source 'LotusTest'
The error reads....
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Lotus][ODBC Lotus Notes]Unable to find path to server
/connectiontest/connectiontest.asp, line 12
my code includes......
<%
dim myConn
set myConn = server.createobject("ADODB.Connection"
myConn.Open "LotusTest"
If myConn.state = 1 then
response.write("Connection opened successfully<p>"
else
response.write("Error. Connection could not be opened.<P>"
end if
myconn.close
set myConn = Nothing
%>
help me please