SUMMARY
This step-by-step article describes how to configure
different ASP.NET versions for different Web applications running on the same
Web server. This article also describes how to
configure an ASP.NET application to target a specific version of the .NET
Framework.
back to
the topThe following list outlines the recommended hardware, software, network infrastructure, and service packs that are required:
- ASP.NET 1.0 (included with the .NET Framework 1.0)
- ASP.NET 1.1 (included with the .NET Framework 1.1)
To install the .NET Framework redistributable package, do either of the following:
- Download the .NET Framework redistributable package, and then run Dotnetfx.exe. To
download the .NET Framework redistributable package, visit the following
Microsoft Web site:
- Install the redistributable file from the
Windows Component Update CD-ROM or DVD-ROM. The redistributable file is located in the
Wcu\dotNetFramework folder.
back to
the topView the script map for an ASP.NET application to determine
the version of ASP.NET that the application uses. To view the script map for
an ASP.NET application, follow these steps:
- Click Start, point to
Programs, and then click Control Panel.
- Double-click Administrative Tools,
and then double-click Internet Information Services (IIS).
- Expand local computer,
expand Web Site, and then expand
Default Web Site.
- Locate the folder that contains the ASP.NET application.
- Right-click the folder that contains the ASP.NET application, and then click
Properties.
- Click the Directory tab, and then click
Configuration. The Application Configuration
dialog box opens.
- Click the Mappings tab, and then select an ASP.NET
application extension, such as .asmx or .aspx.
The Executable Path column of the dialog box lists the path to
the ASP.NET ISAPI version that the application uses. By default, the ASP.NET
ISAPI is installed in
%WindowsDirectory%\Microsoft.NET\Framework\
%versionNumber%.
The version number in the path indicates the version number of the
ASP.NET ISAPI that the application uses. The ASP.NET ISAPI version determines
the version of the runtime that the application uses.
back to the topTo make it easier to reconfigure the script map for an
ASP.NET application, each installation of the .NET Framework is associated with
a version of the ASP.NET IIS Registration tool (Aspnet_regiis.exe). You can use
this tool to remap an ASP.NET application to the ASP.NET ISAPI version
associated with the tool.
Note Because Aspnet_regiis.exe is linked to a specific version of
the .NET Framework, you must use the appropriate version of Aspnet_regiis.exe
to reconfigure the script map for an ASP.NET application. Aspnet_regiis.exe
only reconfigures the script map of an ASP.NET application to the ASP.NET ISAPI
version associated with the tool.
back to the topWhen ASP.NET 1.1 is configured on the root Web site, follow these steps to configure ASP.NET 1.0 for an application:
- Click Start, and then click
Run. In the Open text box, type cmd, and then click OK.
- At the command prompt, locate the following directory
path:
%WindowsDirectory%\Microsoft.NET\Framework\v1.0.3705\
- Type the following command to configure the ASP.NET 1.0
application in IIS:
aspnet_regiis -s w3svc/1/root/ApplicationName
To remove ASP.NET 1.0 from this application, repeat
steps 1and 2, and then type the following command:
aspnet_regiis -k w3svc/1/root/ApplicationName
back to the
topWhen ASP.NET 1.0 is configured on the root
Web site, follow these steps to configure ASP.NET 1.1 to run an application:
- Click Start, and then click
Run. In the Open text box, type cmd, and then click OK.
- At the command prompt, locate the following directory
path:
%WindowsDirectory%\Microsoft.NET\Framework\v1.1.4322
- If ASP.NET 1.1 is not already registered, type the
following command to register it:Note The -ir option registers ASP.NET 1.1 without updating the scripts in
IIS.
- Type the following to configure the ASP.NET 1.1 application in
IIS:
aspnet_regiis -s w3svc/1/root/ApplicationName
To remove ASP.NET 1.1 from this application, repeat steps 1
and 2, and then type the following command:
aspnet_regiis -k w3svc/1/root/ApplicationName
back to the
top