In ASP classic application that runs on IIS 7 you might face that ODBC error "[Microsoft][ODBC Microsoft Access Driver] Your network access was interrupted. To continue, close the database, and then open it again."
to resolve this error, open the "applicationHost.config" file in "<Windows Folder>\System32\InetSrv\config" and update this key :
<applicationPoolDefaults>
<processModel identityType="NetworkService" />
</applicationPoolDefaults>
to
<applicationPoolDefaults>
<processModel identityType="NetworkService" loadUserProfile="false" />
</applicationPoolDefaults>
and this should fix your problem.