I've converted old MVC2 project to MVC3. Now I have .aspx views along with razor .cshtml.
Let's say I have a view associated with controller (HomeController
, Index
action and ~\Views\Home\Index.aspx
) and at the same time I still have absolutely different ~\Views\Shared\Index.aspx
.
Normally when Index
Action calls View()
it renders ~\Views\Home\Index.aspx
. But if I convert the view into razor view, the same action instead of rendering ~\Views\Home\Index.cshtml
calls
~\Views\Shared\Index.aspx
.
So I guess MVC gives priority to .aspx pages rather to .cshtml. Maybe I need to change something in web.config files, because now I have to explicitly tell it which view to get:
View("~\Views\Home\Index.cshtml")
Even if I drop the extension View("~\Views\Home\Index")
it will still call the shared .aspx view, although I have the right path. Strange isn't it?