It seems that MVC3 has a priority handler for .cshtml and .vbhtml file extensions and tries to locate them in the default folder.

When requesting these URLs:

  • domain.com/test.cshtml
  • domain.com/test.vbhtml

MVC always looks for these specific static files in a default folder.

Regardless of the extension or the route, I want it to completely ignore the .cshtml & .vbhtml handling and just pass the full URL through like all other URLs so I can take care of the routing on my own (with Nancy).

Running MVC3+Nancy+Razor on IIS 7.5 on an Azure instance.

link|improve this question

80% accept rate
feedback

1 Answer

Add

<configuration>
  <appSettings>
   <add key="webPages:Enabled" value="false" />
  </appSettings>
</configuration>

to your web.config. Starting with the next version of Nancy (0.10), the Razor engine will automatically add this to the web.config

link|improve this answer
Unfortunately that doesn't help. It seems this line only blocks the .cshtml and .vbhtml files in /Views, then IIS returns code status 404. I need to let the URLs pass through like valid ones to Nancy and route them elsewhere. – DominiqueBal Jan 25 at 12:28
1  
Odd.. we had a reported issue where the default handler would intercept request to routes that shared the same name as views.. we were advice by ppl on the MVC team to use this and it solved it for that particular case – TheCodeJunkie Jan 25 at 12:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.