Does ASP.NET MVC have the App_Code concept?
+1
A:
You can do it that way although the default way in the templates is to use a compiled class library.
Daniel A. White
2009-09-22 20:47:44
+6
A:
There's no App_Code directory for MVC projects because they are basically Web Application Projects, not Web Site projects.
App_Code is useful for external code or small amounts of utility code that you wish to get compiled into a website. But since MVC is a framework for handling the web requests by itself, you wouldn't (usually) want to be including it as some piece of code in another application. Conversely, you also don't need to be adding code to a special place to make sure it gets compiled, like you would with a web site project.
womp
2009-09-22 21:08:54