moving from ASP.NET 1.0 to 1.1

S

Sanjay Tibrewal

Hello,

I need to move from .NET 1.0 to 1.1. Is there a package that enables you to
do that or do you just apply 1.1 on top of 1.0. Is there any KB article/FAQ
that describes the upgrade process and any thing I need to worry about
before I go ahead and upgrade?

Was looking around MSDN but couldn't find any relevant links.

TIA,
Sanjay.
 
C

Carl Prothman [MVP]

Sanjay said:
I need to move from .NET 1.0 to 1.1. Is there a package that enables
you to do that or do you just apply 1.1 on top of 1.0. Is there any
KB article/FAQ that describes the upgrade process and any thing I
need to worry about before I go ahead and upgrade?

Was looking around MSDN but couldn't find any relevant links.

Sanjay,
The .NET Framework 1.1 version will install "side-by-side" with the .NET
Framework 1.0 version. http://www.asp.net/faq/SideBySide.aspx

If you download and run the .NET Framework 1.1 (Dotnetfx.exe)
without the "/noaspupgrade" switch, it will update all of your web sites
to automaically to 1.1. Or if you install Visual Studio .NET 2003, it will
also install the 1.1 framework without the /noaspupgrade and hence your
web sites will be upgraded to 1.1.

There is a great tool which allows you to switch back and forth for each of
your web sites. ASP.NET Version Switcher
http://www.denisbauer.com/NETTools/ASPNETVersionSwitcher.aspx

Note for Windows Applications, you can control which version of the
..NET framework it uses via the application's config file.
http://msdn.microsoft.com/library/en-us/dnnetdep/html/sidexsidenet.asp

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com
 
N

Natty Gur

Hi, just a tip :

if you set to run an application under ver 1.1 all CLR assemblies will
use ver 1.1, that’s fine. But if you wrote an infrastructure assemblies
that return a CLR type, your infrastructure still referencing ver 1.0 of
clr types. Trying to assign ver 1.0 CLR types to ver 1.1 CLR ends up
with exception.

There are also other side effects of hosting both CLR 1.0 and 1.1. Using
SDK tools of one version on other version, for example, cause some
problems.

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top