I have .net framework1.1 and 2.0 on our server running win2K advance. i have existing application that uses asp.net 1.1, i also have new apps that use ASP.net 2.0.. how can i set my new apps to point to asp.net 2.0 without messing up my existing .NET 1.1 apps?
How to get web app to use .NET 2.0 on Win2K server using .NET 1.1 as default framework?
In the IIS Management Console, right click the application you want to use 2.0, select properties, then the ASP.NET tab. You will have a dropdown where you can select which version of .Net that application needs to run against.
Reply:The .Net Framework is designed to accomodate this. v2.0 does not replace earlier versions when you install it. Your v1.1 apps will continue to use v1.1 and your new v2.0 app will use v2.0. You shouldn't need to do anything on the server other than install the relevant frameworks and the apps.
You tell your new app to target v2.0 when writing it, this should be all you need to do.
No comments:
Post a Comment