How to make ASP.NET MVC 4 or 5 work
If the user is facing trouble with ASP.NET MVC 4 or 5, then please add the below content in his/her domain webconfig file under the configuration section to make it work.
============================================================================================
<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
</modules>
</system.webServer>
<configuration>
=============================================================================================
If module is already define in user domain web config then only need to add below context.
===========================================================================
<modules runAllManagedModulesForAllRequests="true">
===========================================================================
No comments