windows7下调试ASP+ACCESS错误“未找到提供程序 该程序可能未正确安装”解决办法

出现“ADODB.Connection 错误 '800a0e7a' 未找到提供程序。该程序可能未正确安装。 ”错误的原因在于在64位系统中,IIS7应用程序池默认没有启用32位程序,也就是说如果使用的是64位操作系统,而没有64位的Jet 4.0驱动程序,那么就要在IIS7中启用32位程序。
解决方法如下:If you are running a 64-bit OS, there is no 64-bit Jet 4.0 driver. You need to configure your application pool to run 32-bit.
I struggled with this error for a couple hours before I found this:
http://brh.numbera.com/blog/index.php/2007/03/27/using-myodbc-with-aspnet-in-iis7-on-vista-x64
操作方法如下:
IIS信息管理器 - ‘查看应用程序池’ - 右边操作中选择‘设置应用程序池默认设置..’,在‘常规’中设置‘启用 32 位程序’为True。

你可能感兴趣的:(ASP,网络技术)