Requirements
The 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)
- Download the .NET Framework redistributable package, and then run Dotnetfx.exe. To
download the .NET Framework redistributable package, visit the following
Microsoft Web site:.NET Framework Downloads
http://msdn2.microsoft.com/en-us/netframework/aa731542.aspx - Install the redistributable file from the Windows Component Update CD-ROM or DVD-ROM. The redistributable file is located in the Wcu\dotNetFramework folder.
Find the ASP.NET Version Used for the Application
View 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.
Use Aspnet_regiis.exe to Update the Script Map
To 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.
Configure ASP.NET 1.0 for the Application
When 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
aspnet_regiis -k w3svc/1/root/ApplicationName
Configure ASP.NET 1.1 for the Application
When 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:aspnet_regiis -irNote 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
aspnet_regiis -k w3svc/1/root/ApplicationName