Tuesday, February 07, 2006

Tried to convert a ASP.Net 1.1 App to 2.0, but ....

I was trying to convert a ASP.Net 1.1 project that I was working on to ASP.Net 2.0, but I received several errors, and some of them are kind of crytic. The project was compiled fine with ASP.Net 1.1. So I guess the conclusion is that it does take some effort to update to 2.0 .

2 Comments:

At 1:22 AM, Anonymous Anonymous said...

@echo off
cd /d "%windir%\Microsoft.NET\Framework\v1.1.4322"
echo Making sure .NET v1.1 is installed and enabled in IIS.
aspnet_regiis -ir -enable
cd ..
cd "v2.0.50727"
echo.
echo Removing previous .NET installation (MY app Web Service)
aspnet_regiis -k W3SVC/1/ROOT/SS
cd ..
cd "v1.1.4322"
echo.
echo Adding .NET v1.1 installation to (MY app Web Service)
aspnet_regiis -s W3SVC/1/ROOT/SS
echo Done.
pause

 
At 1:23 AM, Anonymous Anonymous said...

@echo off
cd /d "%windir%\Microsoft.NET\Framework\v1.1.4322"
echo Making sure .NET v1.1 is installed and enabled in IIS.
aspnet_regiis -ir -enable
cd ..
cd "v2.0.50727"
echo.
echo Removing previous .NET installation (MY app Web Service)
aspnet_regiis -k W3SVC/1/ROOT/SS
cd ..
cd "v1.1.4322"
echo.
echo Adding .NET v1.1 installation to (MY app Web Service)
aspnet_regiis -s W3SVC/1/ROOT/SS
echo Done.
pause

 

Post a Comment

<< Home