Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting started with ASP.NET [closed]

I know C# and I want to start with ASP.NET (I already know how to build websites, using PHP). I need good resource for ASP.NET (MVC, the latest version).

I have found other qustions, seemiler to mine, but what I want is your recommendations.

like image 486
user1691388 Avatar asked Mar 06 '26 21:03

user1691388


2 Answers

The ASP.NET website is a good place to start:

http://www.asp.net/mvc/mvc4

I would recommend reading some documentation, follow some tutorials, and give it a shot.

If you run into any problems, you can always find answers / ask questions on here.

like image 87
Curtis Avatar answered Mar 09 '26 11:03

Curtis


There's nothing better than looking at working code for a non-trivial project to learn something new. I'd highly recommend going through the MVC Music Store tutorial and type in every line by hand to help you remember. By the end you'll have a real good idea of what MVC is and why it's so cool.

like image 31
Eric Sassaman Avatar answered Mar 09 '26 09:03

Eric Sassaman