Configure asp.net 2008 in windows server 1.1 iis7
Upgrade the development environment to windows server 2008. DEP crashes when iis7 is configured. Check whether. net framework 1.1 sp1 is installed.
Depressed, thought it was a system failure and reinstallation. -_-
The specific configuration steps are as follows:
- Verify that. NET 1.1 SP1 is installed properly.
- Vista does not include. NET v1.1 by default, and of course does not include v1.1 SP1;
- If there is no SP1 environment, running an apppool in v1.1will cause w3wp.exe to crash due to dep;
- To confirm this, check that the version of the "c:/Windows/Microsoft. NET/Framework/v1.1.4322/mscorsvr. dll" file is "1.1.4322.2032" or higher.
- Enable IIS 6.0 compatibility
- Open Control Panel-Programs and Features
- Select Internet Information Services-Web Management Tools-IIS 6 Management Compatibility
- Register v1.1 in IIS
- Run the High Mandatory Level of the command line as Administrator;
- Go to c:/Windows/Microsoft.net/Framework/v1.1.4322
- RunAspnet_regiis-ir-enableThe "ir" option ensures that the existing script ing is not changed when V1.1 is registered in iis7, and "enable" enables allow of ISAPI and CGI restrictions;
- Aspnet_regiis also creates a new name under application pools"ASP. Network 1.1"And set it to classic pipline. If it is a 64-bit operating system, set enable32bitapponwin64 to true;
- Confirm that the new "ASP. NET 1.1" app pool is the default pool
- Open IIS Manager-web sites;
- In the actions area in the upper right corner, click Set web site defaults ...;
- Set application pool to "ASP. NET 1.1"
- Create an asp.net project in v1.1 with Visual Studio and set the Application Pool (Step 4/5 select one)
- Use Visual Studio to create an Asp.net project for V1.1. If the V1.1 app pool is not the default pool, this project will fail to run;
- Open IIS manager;
- Right-click the newly created app directory and choose advanced settings;
- Set the application pool to "ASP. NET 1.1 ";
- Return to Visual Studio and run or debug the project.