简体   繁体   中英

ASP.NET MVC and Web Forms registration

How does IIS know when to route a requests to the ASP.NET MVC framework and the not the Web Forms framework?

Looking through the Web.config of an MVC project I can't see any modules or handlers that are registered, and nothing the Global.ascx seems to do it. So I am at a bit of a loss as to how the system decides which should be used to route a request.

After looking at the MapRoute method the system registers a set of Routes which offload a matching request to an IRouteHandler. The IRouteHandler then returns a IHttpHandler that actually handles the final request.

This is my understanding so far so it might not be 100% correct.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM