Hi
I want to run an ASP.NET version 1.x Web application in the .NET Framework version 2.0. Can some one provide me information and steps ?
Thanks
Hi
I want to run an ASP.NET version 1.x Web application in the .NET Framework version 2.0. Can some one provide me information and steps ?
Thanks
The .NET Framework allows you to install multiple versions of the common language runtime on the same computer. Installing the .NET Framework 2.0 will not disrupt any existing applications that are running on previous versions of the .NET Framework. The .NET Framework 2.0 is designed to have a high degree of backward compatibility with applications built with previous versions of the .NET Framework. An application running on a previous version of the .NET Framework can be made to run on the .NET Framework 2.0 by mapping the application to use the ASP.NET 2.0 ISAPI extension (Aspnet_isapi.dll).
To configure a 1.x application's script map to use the .NET Framework version 2.0
- On the Start menu, click Run.
- In the Open box, type inetmgr and click OK.
- In Internet Information Services (IIS) Manager, expand the local computer, and then expand Web Sites.
- Select the target Web site that is running in the .NET Framework version 1.x.
- Right-click the name of the virtual directory for the Web site, and then click Properties.
The <WebSiteName> Properties dialog box appears.- In the ASP.NET version selection list, choose the .NET Framework version 2.0.
- Click OK.
- Navigate to a page in your application and confirm that your application runs as expected.
Bookmarks