| Added: July/06/2006 at 6:23am | IP Logged
|
|
|
It looks like RishiK is using 1and1 (as I am) and may have done the same "bang me on the head again" thing I did...
In dataconn_inc.asp, for some reason I interpreted the instructions to
replace the entire connection line with the results from the server, so
I left out ConnectionString =, and ended up with..
"DBQ=e:\kunden\homepages\44\d999999999\mysite\asp7\data\data base\aspprotect_access2002.mdb;Driver={Microsoft
Access Driver (*.mdb)};UID=Admin;Password=temp"
After lots of headbanging, I decided to try leaving out DBQ= as follows...
ConnectionString = "e:\kunden\homepages\44\d999999999\mysite\asp7\data\database \aspprotect_access2002.mdb;Driver={Microsoft
Access Driver (*.mdb)};UID=Admin;Password=temp"
Then it finally dawned on me that it should be
ConnectionString = "DBQ=e:\kunden\homepages\44\d999999999\mysite\asp7\data\data base\aspprotect_access2002.mdb;Driver={Microsoft
Access Driver (*.mdb)};UID=Admin;Password=temp"
Like I said, go ahead, bang me on the head. 
|