P
Patricia Kline
I am not sure if this is the correct forum, however, here is my problem:
I am writing my first web application in dotnet... I have written serveral windows applications in vb.net. I have added a oledb connection, and used the wizard to connect the database. I renamed the connection to cnn. On my page_load, I just have two lines of code:
cnn.open
cnn.close
When i run the problem on my localhost... i get the follow error msg, The Microsoft Jet database enjine cannot open the file 'c:\db1.mdb'. It is alrady opened exclusively by another user, or you do not have permission to view its data.
I found in the knowledge base that a known problem with connecting to an access db with asp.net. It lists several solutions and I have tried them all.
I changed my machine.config processModel userName to "SYSTEM". I added the <identity impersonate = "true" /> to the web.config in my app. And there is no security on the access database. I have no idea what else to do. Can any one help me???
I am writing my first web application in dotnet... I have written serveral windows applications in vb.net. I have added a oledb connection, and used the wizard to connect the database. I renamed the connection to cnn. On my page_load, I just have two lines of code:
cnn.open
cnn.close
When i run the problem on my localhost... i get the follow error msg, The Microsoft Jet database enjine cannot open the file 'c:\db1.mdb'. It is alrady opened exclusively by another user, or you do not have permission to view its data.
I found in the knowledge base that a known problem with connecting to an access db with asp.net. It lists several solutions and I have tried them all.
I changed my machine.config processModel userName to "SYSTEM". I added the <identity impersonate = "true" /> to the web.config in my app. And there is no security on the access database. I have no idea what else to do. Can any one help me???