christrinder
02-27-2003, 11:08 AM
Hello all.
I'm producing a data entry system for my work. The user uses a number of radio boxes to make their selections etc. When they click no, a pop-up window is produced which requests more information. This window uses a connection include file to source data from the database. When they have inputted that, the window closes and they return to the main page. However, if they press no on another radio button too soon after the window closes, then I get the following error. Any ideas?
- - - - - - - - -
Provider error '80004005'
Unspecified error
/dir/conninclude.asp, line 5
- - - - - - - - -
the connection include is as follows...
- - - - - - - - -
<%
dim oConnection
set oConnection = Server.CreateObject("ADODB.Connection")
oConnection.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};DBQ="&Server.MapPath ("db1.mdb")
oConnection.Open
%>
- - - - - - - - -
I'm producing a data entry system for my work. The user uses a number of radio boxes to make their selections etc. When they click no, a pop-up window is produced which requests more information. This window uses a connection include file to source data from the database. When they have inputted that, the window closes and they return to the main page. However, if they press no on another radio button too soon after the window closes, then I get the following error. Any ideas?
- - - - - - - - -
Provider error '80004005'
Unspecified error
/dir/conninclude.asp, line 5
- - - - - - - - -
the connection include is as follows...
- - - - - - - - -
<%
dim oConnection
set oConnection = Server.CreateObject("ADODB.Connection")
oConnection.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};DBQ="&Server.MapPath ("db1.mdb")
oConnection.Open
%>
- - - - - - - - -