↧
A one file Asp Net MVC3 Hello World app [beginners]
When I first started with MVC3 I got the impression that even the most simple application requires a lot of work (and a lot of files). That is not correct. MVC3 can also be used in a much lighter way...
View ArticleAdding a Razor View to our Hello World MVC3-app [beginners]
In my previous post I made an example of how to write a very light weight MVC3 app with only one file (well, besides the web.config and global.asax). In this post I’ll add a Razor view as simply as...
View ArticleMaking the MVC3 Model independent of data source (using Ninject) [beginners]
Here are three “rules” I try to adopt to in my relearning MVC3 app: The Views should not do anything else than display the data. The Controllers should (on get’s) only be responsible for serving the...
View Article