Sunday, January 31, 2010

Understanding asp.net MVC (Model View Controller) architecture for beginners

This article is intended to provide basic concept and fundamentals of asp.net MVC (Model View Controller) architecture workflow for beginners.

Introduction

“M” “V” “C” stands for “MODEL” “VIEW” “CONTROLLER” , asp.net MVC is an architecture to develop asp.net web applications in a different manner than the traditional asp.net web development , web applications developed with asp.net MVC is even more SEO (Search Engine Friendly ) friendly.

Developing asp.net MVC application requires Microsoft .net framework 3.5 or higher.
MVC interaction with browser

Like a normal web server interaction, MVC application also accept request and respond web browser same way.

Read more: Codeproject