Change Asp.net 2.0 development environment from 32 to 64 bit

I was developing an asp.net 2.0 application on a 32 bit machine, but now I have a 64 bit platform for the same application. I cannot debug my code on a 64 bit machine.

Ny1 Plz help me

0


a source to share


1 answer


1) Have you recompiled the application?

2) If you tried to change "Target Platform", in Project Properties -> Build -> Platform Target to "Any processor" or "x64".



3) It's worth reading the MSDN article on Porting 32-bit Managed Code to 64-bit to make sure you don't have any problems with interop / serialization / etc .., as well as Scott 's blog article on the subject.

0


a source







All Articles