I'm trying out ASP.NET webpages using the razor syntax so I created a sample site. If I view the site in WebMatrix or using VisualStudio (view in browser) everything works fine. When I try to create an IIS site I get a 404 error when trying to access any .cshtml files. Regular html files work from the site. It's set to .net 4 integrated. I googled for an hour with no luck.
feedback
|
|
Could it be that you have just copied the files of your MVC application into a directory (or virtual directory) of IIS? In order for your ASP.NET MVC application to work, you need to configure a web application in the IIS manager (right-click on "Default Web Site" and choose "Add application"). Then deploy your application to the just created application directory. | |||||||||||
feedback
|
|
We had exactly the same problem at my company. To get it to work, we had to do a full .Net 4 install and the pages are being served correctly. | |||
|
feedback
|
|
Check to see if ".cshtml" is mapped correctly within the site's Properties -> Home Directory -> Configuration... -> Mappings Mine is mapped to: c:\windows\microsoft.net\framework\v4.0.30319\aspnet_isapi.dll | |||
|
feedback
|