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:
- ExtensionlessUrlHandler-ISAPI-4.0_32bit
- ExtensionlessUrlHandler-ISAPI-4.0_64bit
- ExtensionlessUrlHandler-Integrated-4.0
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?