How to install visual studio 2015 Step by Step Process like =>
Step (1) : Once downloading is complete, run the installer. The following dialog will be displayed.
Step (2): Click the ‘Install’ button and it will start the...
SQL server identity column values use in table
Steps-Firstly Open-> Sql Server Create Table -> First Field Like ID Usually Autoincrement=>
Table create then=>insert data in table=> then Select data show increment id.
The...
MVC Flow-
MVC application takes place when certain request comes from the client. The diagram below shows the flow:
Flow Steps
1. The client browser sends request to the MVC Application.
2. Global.ascx receives this...
Microsoft had introduced ASP.NET MVC in .Net 3.5,since then lots of new features have been added.The following table list brief history of ASP.NET MVC.
ASP.Net MVC 5.2 [Current]
1. MVC Version - Asp.Net MVC 5.2
2....
There are various positive points to Using MVC
1. TDD support out of the box as most of the design is based on interfaces.
2. SEO friendly URL by design (though now this is possible in ASP.NET 4 as well)
3. No ViewState...
There Are Many Advantage of MVC(Model view & Controller)
1. Faster development process.
2. Easier to manage complexity (divide and conquer).
3. It does not use server forms and view state.
4. Front Controller pattern (rich routing).
5. Better support for test-driven development.
6. Ideal for distributed...
Introduction
The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern...