Asp.Net, MVC »

[4 Dec 2012 | 0 Comments]

Moving from MVC 3 to MVC 4 read on. There are a number of references that need updating as well as update to the web.config(s). [More]

MVC »

[12 Sep 2011 | 0 Comments]

Scenario: I deployed my mvc 3 application to IIS 6 (with NTLM authentication). While using Internet Explorer (IE) everything looked great. When I tested the site with other common browsers Chrome/FireFox/Safari none of the styles specified in the css sheet were used [More]

MVC »

[11 Jun 2011 | 3 Comments]

Are you running in IIS7 integrated mode? Classic mode of IIS7 does not automatically map extensionless URLs to ASP.NET (much like IIS6). Also make sure your Web.config <system.webServer> tag is configured correctly. i.e. <system.webServer>    <validation validateIntegratedModeConfiguration="false"/>    <modules runAllManagedModulesForAllRequests="true"/></system.webServer>   On my workstation windows 7, 64 bit I had set my app pool to classic and added a "Wildcard Script Map" to C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll (32bit dll). The end result was my web.confi webServer section looked like   <system.webServer>    <validation validateIntegratedModeConfiguration="false" />    <modules runAllManagedModulesForAllRequests="true" />        <handlers>            <add name="_wildcard 32" path="*" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv4.0,bitness32" />        </handlers>  </system.webServer>