I have tried to understand the MVC3 framework and when I used to start on a Project I Don’t know that where I am starting the project what the arrangement of files And Why I am Adding Controllers Models As I am a Beginner somebody Please guide Me about its Structure of Solution Files and folder where we have To start If Want something To make In this framework so What should I do For this.
Share
MVC is a software architecture – the structure of the system – that separates domain/application/business (whatever you prefer) logic from the rest of the user interface. It does this by separating the application into three parts: the model, the view, and the controller.
Check this ASP.NET MVC Overview .. It may clear you all doubt that what is Model , View and Controllers etc. First you learn about the MVC architechture, then look for the project.
spend few mintues learning these Model-View-Controller, What is MVC, really?, Wiki – MVC. It may help you to know about MVC project structure and interaction related stuff..
follow the Microsoft tutorial step by step.. There is much good tutorial named MVC Music Store
The best ASP.NET MVC tutorial I know is the NerdDinner application contained in "Professional ASP.NET MVC 3". It has been created by Scott Hanselman and is in production use online at http://www.NerdDinner.com.
Free ASP.NET MVC eBook Tutorial , Microsoft MVC Book or Tutorial Recommendation
Check recommended books for MVC 3. I like
Pro ASP.NET MVC 3 Frameworkby Steven Sanderson.https://stackoverflow.com/questions/6315616/best-book-on-asp-net-mvc-3