User-1509636757 posted
probably this tutorial will help you:
Connecting to a Microsoft Access database with ASP.NET
the DB is on another pc
you can Impersonate the application.
you need to change your “web.config” file by providing the necessary “impersonation” configuration. Open the “web.config” file of your web application and insert the following line just below the “<system.web>” tag:
<identity impersonate="true"
userName="computername\administrator" password="password" />
Replace the “computername” with your system name and “password” with the password of the “administrator” account. You can also replace “administrator” with any other customized user account with respective privileges.
hope it helps./.