(newb) Where do custom controllers/models go in 4.11
Sorry for the newb question, but where do custom controllers(surfaceControllers) and models go in 4.11?
I've seen that in the standardMVC package they are in App_code. Is that best? Won't it get kind of ugly storing both controllers and models in the same location?
Will it work and is it a better practice to create a separete project and just import the binaries?
You can store the controllers in a sub-folder in App_Code, in fact it probably doesn't matter where they are stored as long as they are compiled. Your models can also go into a Model folder under App_Code, but again it probably won't matter if you are compiling in VS.
(newb) Where do custom controllers/models go in 4.11
Sorry for the newb question, but where do custom controllers(surfaceControllers) and models go in 4.11?
I've seen that in the standardMVC package they are in App_code. Is that best? Won't it get kind of ugly storing both controllers and models in the same location?
Will it work and is it a better practice to create a separete project and just import the binaries?
You can store the controllers in a sub-folder in App_Code, in fact it probably doesn't matter where they are stored as long as they are compiled. Your models can also go into a Model folder under App_Code, but again it probably won't matter if you are compiling in VS.
is working on a reply...