Introduction of asp.net mvc model(framework)
Introduction of MVC framework:
In this post we start learn about asp.net MVC framework. MVC
is one of three ASP.NET models. MVC is a framework for building web
applications in asp.net. The MVC framework is defined in the “System.Web.Mvc
assembly”.
The MVC model for web application:
The MVC Applications give 3 logic layers these are:
- Model logic (The business layer): Model objects are the parts of the application that implement the logic for the application's data domain.
- View logic (The display layer): Views are the use to display the application's user interface.
- Controller logic (The input control): Controllers are the part
that handles user interaction.
Asp.net mvc model(framework)
The MVC Programming Model of asp.net:
- MVC is one of three ASP.NET application development models.
- MVC is an asp.net framework for building web applications Model View Controller) design Pattern.
- The View displays the database records.
- The Controller handles the input to the database. Means interact with database.
- The MVC model also provides full control over CSS, html, and JavaScript.
Advantages of an MVC model Based Web Application:
- The ASP.NET MVC model provide following advantages these are listed here:
- It makes it easier to manage complexity of application. By dividing an application into the model, the view, and the controller.
- MVC does not use view state or server based forms. So the MVC framework ideal for developers who want full control over the behavior of an application.
- MVC uses a Front Controller pattern. This Front controller helps Web application requests through a single controller.
- Front Controller enables you to design an application that supports a rich routing infrastructure.
- It provides better support for test driven development .
- It works well for Web applications that are supported by large teams of developers and for Web designers who need a high degree of control over the application behavior.
MVC version:
Asp.net Related Other Post:
- What is ASP.NET FRAMEWORK PART 1 Programming
- What is ASP.net Programming Part 2,Chat web application in asp.net programming
- SQL Helper Class, Example of how to add captcha in Asp.net using C#
- Sql Query for asp.net Programming ,How to get Server IP, How to create graph in asp.net:
- How to create Line chart in Asp.net programming:
- How to Make Data Table By C# code in Asp.net Programming:
- How to Print Div in Asp.net Programming by javaScript
- How to Calculate Number of Sunday in a particular month by asp.net programming
- How to Make a HTML Table by C# code in asp.net programming
- how to get Asp.net the First Sunday of the Given Month
- How to calculate first date and last date of month
- Display selected Date from data base into asp.net calendar
- how to use CAPTCHA in asp.net,How to use Asp.net regular expression
- How to find Repetitions of character in to given String.
- Introduction of asp.net with c# or C Sharp tutorial
- What is the Data Type how to declare datatype in Asp.net with C#
- Asp.net Declare a Pointer ,
- Web services
- Diffrence between ASP.NET MVC 5 and MVC 6
- How to Set the current data into Asp text box
Comments
Post a Comment