Board index » Web Programming » installing .net 2.0
|
Salvador
|
|
Salvador
|
installing .net 2.0
Web Programming186
Hi all, I have a few servers running some apps on .net 1.1. I need to install 2.0 on them to run some new websites. Will installing 2.0 break my 1.1 apps? TIA! - |
| Karl
Registered User |
Tue Jan 17 17:13:24 CST 2006
Re:installing .net 2.0
They can both run side by side. I believe in IIS 6.0, you can configure this
per application in the new ASP.NET tab you'll see when you go into properties of an application in IIS. On IIS 5.0, I think you need to switch back and forth between the two. blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_ASP_Net_20_Side_by_Side.aspx">blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_ASP_Net_20_Side_by_Side.aspx -- www.openmymind.net/">www.openmymind.net/ <param@community.nospam>wrote in message QuoteHi all, - |
| stcheng
Registered User |
Wed Jan 18 00:43:59 CST 2006
Re:installing .net 2.0
Hi Param,
As Karl has mentioned, ASP.NET 1.x and 2.0 can be deployed on the same server side by side.... On server box with IIS6, we can configure different application to running in different application pool , and even creating multiple websites (if server version OS) and configure asp.net applications of different versions hosted in different IIS site.... Also, hosting asp.net 1.x and 2.0 apps in separate sites are better to manage since sometimes they'll conflict ... e.g when a parent web application (maybe site root) is configured as ASP.NET 2.0 and has a web.config (with some 2.0 specific confgure elements...), if there is another sub asp.net 1.x web application deployed under that 2.0 app's sub application virtual directory, it will throw parse error when starting since sub asp.net app's web.config will inherts config info from parent virtual dir(or site root)'s web.config file.... Thus, asp.net 1.x app can not parse 2.0 specific configure elements(like connectionstrings....) blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_AS">blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_AS P_Net_20_Side_by_Side.aspx Thanks, Steven Cheng Microsoft Online Support Get Secure! www.microsoft.com/security (This posting is provided "AS IS", with no warranties, and confers no rights.) -------------------- | From: "Karl Seguin [MVP]" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net> | References: <OTwV3Z7GGHA.2036@TK2MSFTNGP14.phx.gbl> | Subject: Re: installing .net 2.0 | Date: Tue, 17 Jan 2006 18:13:24 -0500 | Lines: 22 | X-Priority: 3 | X-MSMail-Priority: Normal | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670 | X-RFC2646: Format=Flowed; Response | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 | Message-ID: <#xmcju7GGHA.344@TK2MSFTNGP11.phx.gbl> | Newsgroups: microsoft.public.dotnet.framework.aspnet | NNTP-Posting-Host: 206-248-152-12.dsl.teksavvy.com 206.248.152.12 | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP11.phx.gbl | Xref: TK2MSFTNGXA02.phx.gbl microsoft.public.dotnet.framework.aspnet:371580 | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | They can both run side by side. I believe in IIS 6.0, you can configure this | per application in the new ASP.NET tab you'll see when you go into | properties of an application in IIS. On IIS 5.0, I think you need to switch | back and forth between the two. | | blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_AS">blogs.msdn.com/david.wang/archive/2005/11/07/HOWTO_Install_and_Run_AS P_Net_20_Side_by_Side.aspx | -- | www.openmymind.net/">www.openmymind.net/ | | | | <param@community.nospam>wrote in message | news:OTwV3Z7GGHA.2036@TK2MSFTNGP14.phx.gbl... |>Hi all, |> |>I have a few servers running some apps on .net 1.1. I need to install 2.0 |>on them to run some new websites. Will installing 2.0 break my 1.1 apps? |> |>TIA! |> | | | - |
