Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a simple ASP.NET MVC (C#) tutorial(s)? [closed]

I am coming from a PHP background and I am familiar with OOP concepts, but I am moving away from PHP and trying out ASP.NET MVC using C#.

Even without being forced to use web forms, this is a big jump for me coming from PHP. This is worsened by the fact that there are not very many tutorials out there on this subject in comparison to PHP.

All the tutorials I have found online are too complex or not very well put together so when I am going through them I always miss something that adds much confusion. That being said I understand the Visual Studio IDE pretty well from past experiences.

Is there any decent and simple MCV tutorial out there on the web that would be decent for a PHP programmer?

like image 525
Lenny Avatar asked Nov 01 '09 03:11

Lenny


People also ask

Is C# and ASP.NET MVC are same?

They are the same thing. C# is the language you have used to do your development, but ASP.NET MVC is the framework you used to do it.

Is ASP.NET MVC still used?

It is no longer in active development. It is open-source software, apart from the ASP.NET Web Forms component, which is proprietary. ASP.NET Core has since been released, which unified ASP.NET, ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (a platform using only Razor pages).

What has replaced ASP.NET MVC?

ASP.NET MVC, a web application development framework released by Microsoft in 2009, was replaced by ASP.NET Core seven years later, an upgraded version for the same.


2 Answers

I have been working with ASP.NET MVC since it Beta days and have always found lack of proper technical details in blogs and forum posts to be quite inhibiting in the climbing up the learning curve. Then, ScottGu, ScottHa and others posted the Nerddiner sample application and the first chapter of the excellent Professional ASP.NET MVC 1.0 book.

It is a good idea to look at sample code/applications and build our own blog/forum application using ASP.NET MVC while working your way through. Steven Sanderson's book and his blog are terrific resources too.

HTH, indyfromoz

like image 66
indyfromoz Avatar answered Sep 21 '22 03:09

indyfromoz


Start with Scott Gu's blog. ASP.NET MVC has a "Learn MVC" section. Don't forget to look at the code within the default template. It's a good place to start.

Of course ask questions here on Stackoverflow.

like image 40
Chuck Conway Avatar answered Sep 20 '22 03:09

Chuck Conway