- 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: class Program { static void Main(string[] args) { Quene q = new Quene(); // This...
-
Here is the code: class Program { static List<int> li = new List<int>(); static void Main(string[] args...
-
Here is the code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; ...