- We can have full control on the HTML
- Has benefit of Seperation of Concerns like the view and the code behind are not tightly coupled we can use the same view with many different action methods
- As we write the UI code directly in Html we can easily intergrate the CSS and javascript frameworks like Jquery and bootstrap
- It is the latest framework for developing web applications when compared with web forms in .net
- It provides Html helpers which helps use to write Html elements easily using C#
- Supports Razor syntax where the View can be developed using mix of Html code and c# code
Your go-to destination for mastering software development technologies, data structures, and algorithms in an easy-to-understand way!
Main benefits of using Asp.net MVC over Asp.net Webforms
The main benefits of Asp.net mvc are:
Popular Posts
-
Here is the code: // => Brute Force Solution: O(m* n) static long arrayManipulation(int n, int[][] queries) { ...
-
HTML: Here is the sample code for scrolling vertical and horizontal with fixed header: <div class="outer-container"> ...
-
Here is the Code: class Program { static void Main(string[] args) { Quene q = new Quene(); // This...