我的任务是对从32位服务器移动到64位服务器的ASP.NET 2.0应用程序进行故障排除。该应用程序不是在Visual Studio中编写的,而是在FrontPages中编写的。它在旧服务器上工作,但在新服务器上我们收到以下错误:
“无法在DLL'kernel32.dll'中找到名为'InterlockedIncrement'的入口点
听起来它可能是64位与32位的问题,但我无法找到任何实际指向我需要更改某些类型参数的地方我无法解决问题。任何帮助将不胜感激!
答案 0 :(得分:0)
来自MSDN:
<强>平台:强>
Windows 7,Windows Vista SP1或更高版本,Windows XP SP3,Windows XP SP2 x64 Edition,Windows Server 2008(不支持服务器核心角色), Windows Server 2008 R2(不支持服务器核心角色),Windows Server 2003 SP2
你符合要求吗?
答案 1 :(得分:0)
我们改变了
&lt;%@ Import Namespace =“Microsoft.Data.Odbc”%&gt;到
&lt;%@ Import Namespace =“System.Data.Odbc”%&gt;它起作用了。