Microsoft JET Database Engine error '80040e4d'
I have tried EVERYTHING to figure out the problem I am having. Here is my connection:
strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data source=" & "D:\TimeReportDB\TimeReport.mdb;" &_
"Jet OLEDB:System Database=D:\TimeReportDB\Security.mdw;"
Set cnnTimesheet = Server.CreateObject("ADODB.Connection")
cnnTimesheet.Open strConn, "myUserName", "myPassword"
Currently it is telling me "Not a valid account name or password." I know i am using the correct username and password. I have also made sure that the IUSR account has read and write privelages. Could I get some help here?
|