|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Upgrading server to Version 2I am a systems admin, not a developer, so this may be a stupid question that I just can't seem to find the answer to. I have a production server that hosts numerous websites developed by numerous developers. Currently versions 1.0 and 1.1 of the Framework are installed and I would like to add version 2.0. My question is if I upgrade to version 2 will the existing ASP .Net applications continue to work? Will all of the applications run on version 2 and break if they use something that is deprecated or will the applications built on version 1.1 still run on version 1.1? If not, what does the developer need to do to make it work. Links to any information would be appreciated. Thanks in advance. pete In the regard of .NET framework, technically, there is no "Upgrading (lower
version to higher version)", it is side-by-side installation, meaning, you can install multiple version of .NET frameworks on the same computer, just as you have already done to 1.0 and 1.1. It is the same to 2.0. For the .NET application, even it is developed on different version of .NET framework, you can still configure it to used different version (usually newer version of .NET framework). Most likely, a .NET app developed under older version of ..NET framework would run under a newer version of .NET framework, if the older one is not present. However, it is not 100% sure, broken compatibility in newer version is possible. the only way to 100% guarantee a .NET app works as it should is to run on the exact version of .NET framework it is designed to. Show quote "Pete" <WagePe***@starband.net> wrote in message news:6e962$43d012d3$943f9485$4998@STARBAND.NET... > Greetings, > > I am a systems admin, not a developer, so this may be a stupid question > that I just can't seem to find the answer to. I have a production server > that hosts numerous websites developed by numerous developers. Currently > versions 1.0 and 1.1 of the Framework are installed and I would like to > add version 2.0. > > My question is if I upgrade to version 2 will the existing ASP .Net > applications continue to work? Will all of the applications run on version > 2 and break if they use something that is deprecated or will the > applications built on version 1.1 still run on version 1.1? If not, what > does the developer need to do to make it work. Links to any information > would be appreciated. > > Thanks in advance. > > > pete |
|||||||||||||||||||||||