ASP.NET foundation

xiaoxiao2021-03-06  82

First let's take a look, the ASPNET worker process:

The ASP.NET Worker Process is a separate process separated from inetinfo.exe --- ASPNET_WP.EXE. This situation occurs in an environment of IIS5.0, which is running IIS6.0 in IIS5.0 isolation mode. If it is not running IIS6.0 in IIS5.0 isolation mode, ASP.NET is in a process called w3wp.exe in. Although IIS is still a typical entry point to access the ASPNET application, it is physically listened to the corresponding port, but its role has weakened, and many of its tasks can be completed by the ASPNET in its own worker process. .

The concept and understanding of the category in ASPNET:

First of all, it is clear that each .aspx page is compiled into class. Since it is a class, it is necessary to satisfy the nature of the class, such as a member variable, member function, and inheritance characteristics. Each .aspx web page is inherited from the System.Web.ui.page class, but not directly inherited from this class, but directly inherited from its code hidden class, and this code hidden class is directly inherited in the Page class. We write. The static page of the .aspx web page (HTML code section) is a function that is specifically used to generate these static code in the generated web page when compiling, and this function is always invoked to generate The frame part of the web page. Everyone may already have the experience of writing .aspx webpage, then you may notice that the code we have written has such a more worthless situation. That is: First, the code named by