I want to host a asp.net 4.0 application in windows server 2003. I referred may sites and followed the below steps as per the suggestion given in multiple sites.
- Installed .net Framework 4.0 client
- Installed .net Framework 4.0 Full
Tried to register .net 4.0 for my website using below
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319>aspnet_regiis -SN W3SVC/{siteid}/ROOT
I got error when I use ablove command like below "the error indicates that IIS is in 64 bit mode, while this application is a 32 bit application and thus not compatible"
To resolve the above problem I used the below command to enable 32bit application
cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 1
after step5 I can register framework using step 3.
still site showing error. like" server applcation unavailable"
Can you plesae guide me to resolve this?
Thanks, Haridharan. R