문제

I am tasked with troubleshooting an ASP.NET 2.0 application that was moved from a 32-bit server to a 64-bit server. The application wasn't written in Visual Studio but in something like FrontPages. It worked on the old server but on the new server we get the following error:

"Unable to find an entry point named 'InterlockedIncrement' in DLL 'kernel32.dll'

It sounded like it could be an issues with the 64 bit versus 32 bit but I haven't been able to find anything that actually points me to where I need to change some type of parameter I have not been able to solve the problem. Any help would be greatly appreciated!

도움이 되었습니까?

해결책 2

We changed the

<%@ Import Namespace="Microsoft.Data.Odbc" %> to

<%@ Import Namespace="System.Data.Odbc" %> and it worked.

다른 팁

From MSDN:

Platforms:

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2

Do you meet the requirements?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top