Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resources for learning ASP.NET MVC 2.0 [closed]

What are some good resources for learning ASP.NET MVC 2.0 (if I don't already know ASP.NET MVC 1.0)?

like image 940
Erx_VB.NExT.Coder Avatar asked Jan 04 '10 06:01

Erx_VB.NExT.Coder


People also ask

Is ASP.NET MVC hard to learn?

It's really difficult to try and learn an entirely new language/framework under pressure. If you're required to deliver working software for your day job, trying to learn ASP.NET Core at the same time might be heaping too much pressure on yourself.

Should I learn ASP.NET 2022?

NET 6, ASP.NET is quite relevant in 2022. By leveraging this unified platform, enterprises can invest in a host of digital technologies such as cloud-based app development, mobile app development, IoT-enabled application development, dynamic web development and many more.

Is ASP.NET still worth learning?

After a strong legacy of over two decades now, the net development services still remain relevant. As per a report by w3techs, ASP.NET is still used by 7.9% of all the websites whose server-side programming languages are known.


2 Answers

Tekpub (Steven Sanderson and Rob Conery) is doing a video series on MVC 2: http://tekpub.com/preview/aspmvc

like image 93
Codewerks Avatar answered Sep 18 '22 14:09

Codewerks


Obviously the first resource I'd point you to is the official ASP MVC website here.

Perhaps the biggest and most key aspect you need to understand about ASP.NET MVC is that MVC isn't explicitly specialised for ASP.NET - it's a very wide design pattern - MVC stands for Model-View-Controller, you should really read up on MVC and gain a general understanding before you dive straight into the ASP.NET implementation.

You may want to look into buying a book that can nicely ease you into ASP.NET MVC. The reviews on amazon are something you want to take into account, as they're usually very accurate.

You can find results of a ASP.NET MVC search here.


As far as your concerns around version 1 to version 2 of ASP.NET MVC go, you shouldn't automatically dismiss any ASP.NET MVC v1 resources you come across - the chances are it's still relevant. You may wish to check out the changelist between v1 and v2 to see if anything you learn is now redundant, updated or changed in any way.

like image 30
Daniel May Avatar answered Sep 20 '22 14:09

Daniel May