Dusan Czupek's blog

Blog related .NET, Android & web development

Recent posts

Tags

Categories

Navigation

Pages

    Archive

    Blogroll

      Disclaimer

      The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

      MVC Part 2 - Adding MVC to existing project

      Sometimes you want to add MVC functionality into existing project. In order to achieve it you need to do some changes in project file, web config, IIS. I would like to describe minimal changes you have to do for it. After these changes Visual Studio will knows the MVC stuff like models, views and so... [More]
      Posted: Nov 30 2010, 18:03 by dczupek | Comments (0) RSS comment feed |
      • Currently 0/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: MVC | dotNet

      MVC Basics

      The ASP.NET MVC Framework is a web application framework that implements the model-view-controller pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller. A model represents the state of a particular aspect of t... [More]
      Posted: Nov 22 2010, 17:36 by dczupek | Comments (0) RSS comment feed |
      • Currently 0/5 Stars.
      • 1
      • 2
      • 3
      • 4
      • 5
      Filed under: MVC | dotNet