Added: June/01/2005 at 12:39pm | IP Logged
|
|
|
I have a simple ASP page that checks a user's login info is correct. If I run the file from my server the first time, everything comes out fine. However, if I try to rerun the page from another browser seconds later, I get an error:
Error Type: Provider (0x80004005) Unspecified error login.asp, line 12
Line 12 in my case is: adoConn.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ=C:\Inetpub\wwwroot\IMI\StudentData.mdb"
If I understand correctly, basically it seems like the connection was never closed from the first page. However, at the end of my ASP page, I have
Set adoConn = Nothing
Can anyone tell me what I'm doing wrong?
Chris
|