惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
宝玉的分享
宝玉的分享
月光博客
月光博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
U
Unit 42
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
V
Visual Studio Blog
腾讯CDC
IT之家
IT之家

博客园 - ξσ Dicky σξ

管理学常见定律 江苏省盐城市响水县运河镇开源路商业街商铺及套间招商招租出售 苏州鼎耀文化传媒有限公司 项目管理专用中英文术语词汇 解决IIS7运行ASP提示错误:An error occurred on the server when processing the URL. Please contact the system administrator 安装Adobe Flash CS5出错的解决办法(Exit Code: 7 ERROR: Unable to get root from inChildPath) Windows 7下破解Visual Studio 2008试用版的评估期限制 PHP/ASP.NET/ASP网站定制开发 跨服务器、数据库、表联合查询 安装完Visual Team System 2008 Team Explorer出错解决办法 查询重复记录的SQL语句 PHP 正则判断中文 UTF-8 & GBK - ξσ Dicky σξ MySQL的FROM_UNIXTIME()和UNIX_TIMESTAMP()函数的区别 招聘资深PHP开发架构师 VS2005/2008中清除最近打开项目的方法 Debugging techniques for PHP programmers PHP 程序员的调试技术 - ξσ Dicky σξ 如何调试Php? - ξσ Dicky σξ Javascript跨域和Ajax跨域解决方案(转)
Windows Server 2008 r2 64bit 运行ASP提示ADODB.Connection ...
ξσ Dicky σξ · 2011-05-07 · via 博客园 - ξσ Dicky σξ

Windows Server 2008 r2 64bit上运行Asp+Access程序时出现如下错误:
ADODB.Connection error ‘800a0e7a’

Provider cannot be found. It may not be properly installed.
原因是64位的iis无法兼容32的jet引擎
网上找到解决办法:
需要让iis以32为的方式运行,只要在命令行输入一下命令 cscript C:\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1 之后IIS就会以32位方式来运行了。
此方法在windows 7 beta上失败
正确解决办法:
以管理员身份运行命令行
转到C:\Inetpub\AdminScripts
运行 cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 true
出现Enable32BitAppOnWin64           : (BOOLEAN) True 即表示成功
运行iisreset
完成。
重新打开网站,一切使用正常!~