当前位置:编程学习 > asp >>

ASP.NET - Application Life Cycle Principle

/*
Author: Jiangong SUN
*/
 
Today, I want to share the knowledge about IIS, Application Life Cycle, request handling and so on.
 
ASP.NET web sites are developed with Web Forms, MVC, Web Pages and hosted in Internet Information Server (IIS). 
When  there is a page request, for example: http://www.example.com/index.aspx, IIS will use its Internet Server Application Programming Interface(ISAPI)
IIS will decide that the request will be treated by aspx(active server pages), ashx(active server handlers), ascx(active server controls) or asmx(active server methods).
If you want to treat any custom type of files, you need to create a custom handler and register it to IIS. 
 
The request handling process are Request -> IIS -> ISAPI -> Application Domain -> Http Runtime -> HttpContext -> MHPM(HttpModule, HttpHandler, Page life, HttpModule)
 
ASP.NET Web Forms Page life cycle is different from ASP.NET MVC.
In web forms, page life cycle model is:
ViewState and PostBack data are loaded in Page_PreLoad event. And Validate and Event are after Page_Load event.
 
Whereas in ASP.NET MVC it's more like:
There is not any code behind for pages in MVC. So, the page life cycle is totoally different.
 
I hope you enjoy this article. 
 
 
补充:Web开发 , ASP.Net ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,