Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will ASP.NET MVC replace ASP.NET Web Forms in future? [closed]

I am working in ASP.NET Web Application. I dont know about MVC and ASP.NET MVC. I read that ASP.NET and ASP.NET MVC are different. I am a beginner in ASP.NET. Now Everyone has asked me about ASP.NET MVC. So I had a confusion whether to learn ASP.NET or to learn ASP.NET MVC. In future, Which one will be prefered in the market whether ASP.NET or ASP.NET MVC? I need all your suggestions please.

like image 740
thevan Avatar asked Jan 21 '26 19:01

thevan


1 Answers

I don't know whether Microsoft will stop developing ASP.NET WebForms, most probably not. But this is not the case. They do not need to replace each other. WebForms have some strength when you want to show built website to your boss in less than minutes - it is good for small web sites that will not be developed much and made complex. But all the asp.net community agree that ASP.NET MVC is more modern and better suited for web development than WebForms - because of unit testing, more control over generated html, etc. Generally MVC pattern fits the web development very well. I would suggest you to learn ASP.NET MVC. Moreover, you don't need much knowledge from ASP.NET WebForms to learn ASP.NET MVC. Even the very same site you are on, is built on ASP.NET MVC 3

like image 177
archil Avatar answered Jan 23 '26 12:01

archil