Reputation: 3439
I use VS 2012 and created two application:
Application#1. MVC 3, NET 4.5
Application#2. MVC 4, NET 4.5
If I compare web.config of these applications, I see the app#2 (MVC 4) has the following handlers registered:
Could anybody please explain how and when they are used?
One more question (optional). If these handlers are required now, where should I put my handlers? Before or after them?
Upvotes: 24
Views: 19600
Reputation: 1265
Here is a blog post that may be helpful.
(which ironically doesn't use an extensionless url)
My understanding is that you will need IIS 7 or greater to benefit from the Integrated mapping and for anything less you will need to use one of the other ISAPI handlers.
Upvotes: 4