I migrated a MVC 2.0 site to MVC 3.0, using that : Migrating MVC 2.0 -> 3.0
Using ASPX as View Engine works great now...
But I tried to create a Razor view and got that error:
The view 'TestView' or its master was not found. The following locations were searched:
~/TestView.aspx
~/TestView.ascx
~/Views/Color/TestView.aspx
~/Views/Color/TestView.ascx
~/Views/Shared/TestView.aspx
~/Views/Shared/TestView.ascx
How can I enable razor on that?
I´m using Visual Studio 2010... Creating a brand new MVC 3 Web Application enables Razor fine!
Thanks