The handler PageHandlerFactory-Integrated has a bad module ManagedPipelineHandler in its module list

The handler PageHandlerFactory-Integrated has a bad module ManagedPipelineHandler in its module list

When developing a web project, you need to install IIS. When publishing an asp.net website on a Windows 2008 r2 with IIS installed, the web program has been mapped to the local IIS, but when running it, the following error message appears: "The handler "PageHandlerFactory-Integrated" has an error module "ManagedPipelineHandler" in its module list."

The cause of this problem is that ASP.NET is not successfully registered with IIS. It is very likely that .Net Framework is installed first and then IIS is installed. To avoid this problem, install IIS first and then install .Net Framework.

The web project development tools and systems I want to release

① Development tools: vs2010, database: sqlserver

②Operating system: Windows 2008 R2

③IIS: IIS 7.5

windows7, after being deployed in the local IIS7, the .aspx page hosting the SL cannot be accessed, but it can be accessed if it is hosted in .html.

Pro-tested available repair methods:

Enter CMD and enter the following command

"%WINDIR%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe" -iru -enable

The detailed graphic steps below are not as simple as the command line above.

Note: The path for 32-bit operating systems is C:\Windows\Microsoft.NET\Framework\v4.0.30319

1. Detailed diagram of the above error:

2. Analysis of the above errors:

VS2010 uses the .NET 4.0 framework by default. The 4.0 framework is an independent CLR, different from .NET 2.0. If you want to run a website based on the .NET 4.0 framework, you need to register the .NET 4.0 framework with aspnet_regiis, and then use the class pool of the .NET 4.0 framework to run the web project of the .NET 4.0 framework.

The most likely cause of the above error is: installing .NetFramework v4.0 first and then installing IIS 7.5.

3. How to register the 4.0 framework with aspnet_regiis?

Here’s how:

① Find the directory where aspnet_regiis is located in the .NET 4.0 framework, search for aspnet_regiis in the root directory of drive C, and find the directory location of aspnet_regiis in the 4.0 framework. My directory is "C:\Windows\Microsoft.NET\Framework\v4.0.30319".

②Run the DOS command line as an administrator,

Execute "Start → All Programs → Accessories → Command Prompt (right-click and select 'Run as Administrator (A)')", and the "Administrator: Command Prompt" window will pop up

③Execute the command "cd C:\Windows\Microsoft.NET\Framework\v4.0.30319" to enter the "C:\Windows\Microsoft.NET\Framework\v4.0.30319" directory, as shown in the figure

Then execute the command "aspnet_regiis.exe -i" to register "aspnet_regiis". Wait for a while and aspnet_regiis will be successfully registered as shown in the figure

Seeing the interface in the picture, you can run the website deployed by .net4.0 in IIS!

To sum up, I hope it will be helpful to people who encounter the same problem. This is also an accumulation of experience in my own growth! Looking forward to your comments!

You may also be interested in:
  • Detailed explanation of Python logging module handlers usage
  • Detailed explanation of the use of Flutter permission_handler permission plugin
  • Detailed explanation of Python Handler processor and custom Opener principle
  • Mybatis-Plus3.2.0 MetaObjectHandler cannot globally populate public fields
  • Python cuts logs by time through TimedRotatingFileHandler
  • A brief discussion on troubleshooting SpringMVC HandlerInterceptor's weird issues
  • Complete example of MyBatis custom typeHandler
  • Spring HandlerInterceptor implementation principle code analysis

<<:  MySQL 5.7.25 compressed version installation and configuration method graphic tutorial

>>:  A brief talk about JavaScript parasitic composition inheritance

Recommend

Detailed explanation of jQuery's core functions and event handling

Table of contents event Page Loading Event Delega...

Sample code for CSS image animation effects (photo frame)

This article introduces the sample code of CSS pi...

Docker image export, import and copy example analysis

The first solution is to push the image to a publ...

Linux traceroute command usage detailed explanation

Traceroute allows us to know the path that inform...

Research on the Input Button Function of Type File

<br />When uploading on some websites, a [Se...

CSS3 realizes the effect of triangle continuous enlargement

1. CSS3 triangle continues to zoom in special eff...

Vue close browser logout implementation example

Table of contents 1. beforeunload event 2. Unload...

React Fragment Introduction and Detailed Usage

Table of contents Preface Motivation for Fragment...

Real-time refresh of long connection on Vue+WebSocket page

Recently, the Vue project needs to refresh the da...

How to prevent hyperlink redirection using JavaScript (multiple ways of writing)

Through JavaScript, we can prevent hyperlinks fro...

Open the Windows server port (take port 8080 as an example)

What is a Port? The ports we usually refer to are...

JS deep and shallow copy details

Table of contents 1. What does shallow copy mean?...

Tips for writing concise React components

Table of contents Avoid using the spread operator...

Sample code for realizing book page turning effect using css3

Key Takeaways: 1. Mastering CSS3 3D animation 2. ...