
Introduction People often ask me if I use MVC or WebForms for my Microsoft ASP.NET projects. I always tell them MVC, but I don’t use it in the classic way that most others do. That is to say, I emit no html from my views, and for that matter really don’t even use views (with the exception of one view which is essentially my entire app. People often refer to this as a SPA or Single-Page-Application. What this basically means is that my entire view is built with JavaScript (in my case Sencha’s ExtJS) and the only interaction with the server is to simply bring down Json results. In this post, I’m going to build a simple app following this principle. It’s purpose will be to take a big pile of … Continue Reading


