views:

66

answers:

2

What are some common errors that programmers face in ASP.NET MVC when compiling or running their application?

Example

  • The incoming request does not match any route

Please include the solution with the error, or if there isn't one set solution, what developers should look for when encountering these errors.

A: 
  • When the view doesn't exist: The resource cannot be found
Trickster
A: 
  • Parser error: Could not load type [...]
  • web.config in Views folder did not get included in publish
Daniel Elliott