Reputation: 3792
I am going to start work on a SaaS based application. I need to decide whether to go with ASP.Net MVC or web forms application. Through various posts I came to know that both are good, they are not replacement of each other and so on.
Also, I know traditional web forms method, I am not aware of MVC, I need to learn it first.
Please guide me which approach is better.
Thanks,
Vijay
Upvotes: 1
Views: 245
Reputation: 12705
i can just share some of my experience as i have worked on both
i preffer asp.net MVC over Asp.net because
of the futile layer of abstraction that Asp.Net has over basic HTTP architecture
the user controls in asp.Net induce unnecessary markup
ease of using ajax
in asp.net mvc compared to updatepanel
(in advanced senarious)
support of razor type syntax increases productivity
no overloading by things like viewstate
because everything is managed by the programmer soem of the typical issues that arise in asp.net like the problems in dynamic controls are no longer present
so if you ask me go for asp.net MVC
Upvotes: 1
Reputation: 5002
There is no right answer here. I prefer MVC but if you already know ASP.Net WebForms it probably is easier to stick with that.
Upvotes: 0