|
|
|
|
|
|
|
Page Views :
|
43899
|
|
Downloads :
|
0
|
|
Rating :
|
Rate it
|
|
Level :
|
Intermediate
|
|
|
Introduction
This post gives you the basic overview on ASP.NET Models, Views and Controllers. It explains how all parts in MVC Application work together and discuss how the Architecture of an ASP.NET MVC application differs from an ASP.NET Web Forms application.
The Sample ASP.NET MVC Application
- Launch Visual Studio 2008, Select the menu option File, New Project then New Project Dialogue box appear as shown below

Select the ASP.NET MVC Web Application Template from the dialogue box and click Ok.
- When you create a ASP.NET MVC Application, Create Unit Test Dialogue box appears as shown below.

Select the No, do not create a unit test project and click Ok.
- After ASP.NET MVC Application is created. You will see several folders in Solution Explorer. You will find three folders named Models, Views and Controllers.

If you expand the Controllers Folder, you will see a file named HomeController.cs and if you expand the Views folder you will see About.aspx and Index.aspx under Home Sub Folder.
- Now you run the application you will see the following output
 Notice the URL in the Address bar, When you click the Home menu link, The URL in the browser changes to /Home and when you click the About menu link, the URL changes to /About.
If you return to Visual Studio project you do not find the Home or About page.
A URL Does not Equal to a page in the application
- When you build a ASP.NET Web Application, there is a correspondence between a URL and Page. If you request a page test.aspx from the server then page must be on the disk other wise 404 - page not found error will come.
- When you build a ASP.NET MVC Application, there is no correspondence between URL and page that you found on the disk. Here a URL corresponds to a controller action instead of a page on the disk.
- In ASP.NET Web Application, Requests are mapped to pages. In ASP.NET MVC Application ,request are mapped to controller actions.
- ASP.NET Web Application is content-centric and MVC Application is logic centric.
URL Routing
- Here Browser Request is mapped to controller action through a feature called URL Routing. URL Routing route the incoming requests to controller actions.
- URL Routing uses Route Table that will be created when application first starts.
- Route table is setup in the Global.asax file.
The Default Global.asax file looks like

When ASP.NET Application first starts, the Application_Start() method is called. This method calls the RegisterRoutes() method which creates the default route table.
- Route table breaks the incoming request into 3 parts
- First part is mapped to a controller name, the second part is mapped to an action name and final part is a parameter that passed to the action.
Example: /Student/Details/3 This URL is parsed into three parts like this: Controller = StudentController Action = Details Id = 3
If you run the sample ASP.NET MVC Application with out supplying a URL, the URL is parsed like this
Controller = HomeController Action = Index Id = "" Controllers
A Controller is responsible for sending the response back to a user who makes the request. Controller is just a C# class file. The Sample MVC Application contains the controller named HomeController.cs located in the Controllers folder.
The Controller in the ASP.NET MVC Application looks like
 Note: The two methods in the controller Index() and About() corresponds to two actions Home and About clicks.
Views
- A view in the ASP.NET MVC Application contains the HTML elements and content that is sent to the browser.
- The two actions in the controller return a view.
- A View is equivalent to a page in ASP.NET MVC Application.
The HomeController.Index() action returns a view located in the following path
\Views\Home\Index.aspx
If you want to return a view for a controller action, you need to create a sub folder in the Views folder same name as controller and create a .aspx file with same name as the action.
Models
A Model in ASP.NET MVC Application contains logic that is not in the view or a controller. The Model should contain your business logic and Data access logic. Conclusion
We had a overview on ASP.NET MVC application and URL Routing. We learnt the functionality of Model, Controller and View in the ASP.NET MVC Application.
|
|
Comment Request!
Thank you for reading this post. Please post your feedback, question, or comments about this post
Here.
|
|
|
|
|
Login
to add your contents and source code to this article
|
|
|
|
|
|
|
|
|
|
|
|
Kalyan Bandarupalli
My name is Kalyan Bandarupalli and I currently live and work in London, UK. I was born in 1980 and i got my first computer when am studying my graduation. I am graduate in Computer Applications and I have done my masters degree in Information Systems. My Professional career started as software engineer and then senior software developer and Software Architect. I am Microsoft Tetchier use .NET technologies to develop the applications. Since 2003 i am working as .NET Developer.
|
|
|
|
|
|
|
|
|
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional
consulting company, our consultants are well-known experts in .NET and many of them
are MVPs, authors, and trainers. We specialize in Microsoft .NET development and
utilize Agile Development and Extreme Programming practices to provide fast pace
quick turnaround results. Our software development model is a mix of Agile Development,
traditional SDLC, and Waterfall models.
|
|
Click here to learn more about C# Consulting. |
|
|
|
|
|
|
|
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon.
Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees.
As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
|
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
|
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
|
ASP.NET 4 Hosting
Get 2 Months Free of ASP.NET Hosting for Only $4.95/month! Receive FREE MS SQL and MySQL Databases Including ASP.NET 4/3.5, MVC 3.0, Silverlight 4, Windows 2008/IIS 7.0 Plus FREE IIS 7 Modules. Host UNLIMITED ASP.NET Web Sites – Click Here!
|
|
|
|
|
|
|
|
|
|
|
|
|