Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm an experienced PHP web developer and am wanting to learn ASP.NET so that I can consider going for ASP.NET jobs.

I've looked at a few introduction to ASP.NET books but I always find that they start far to simple and cover the basics of HTML and general web development. I'm looking for learning resources that will help me make that transition as an experienced web developer.

Can anyone recommend any?

share|improve this question

closed as not constructive by alex23, Muhammad Reda, Niels Keurentjes, skuntsel, chandresh_cool May 12 at 8:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 4 down vote accepted

This Wrox book is great as it includes VB and C# if you are not sure which you want to use.

http://www.amazon.com/Beginning-ASP-NET-3-5-VB-Programmer/dp/047018759X/ref=sr_1_1?ie=UTF8&s=books&qid=1269259493&sr=8-1

If you want to get into MVC, just use the NerdDinner tutorial available for free at

http://nerddinnerbook.s3.amazonaws.com/Intro.htm

A great tutorial, but it's in MVC 1.0. MVC 2.0 just came out so you won't get the latest, but you will get a very good understanding of MVC in ASP.NET

share|improve this answer
I understand the basics of the MVC design pattern but what is all this "webforms vs MVC" stuff that is going around at the moment about? Surely using the MVC pattern has always been available in ASP? – Camsoft Mar 22 '10 at 12:18
MVC is new to ASP.NET in terms of a official part of the framework. 1.0 just came out last year, so it's still fresh, but it's a big part of the future for ASP.NET. The "webform vs MVC" stuff is more about people wondering if they should invest their skills in one or the other. In my mind, you should know both if you are an ASP.NET developer, but others will disagree. – Wil Mar 22 '10 at 13:03
Why can't you just apply the MVC design pattern to websites built with webforms? I guess the official support for MVC in ASP.NET will make my journey more complex as I really need to build some projects in ASP.NET to start learning and have to decide whether I should use MVC of Webforms, but like you said I'm going to need to know both. – Camsoft Mar 22 '10 at 13:13
+1 for mentioning the wrox book. i do recommend it as well – citronas Mar 22 '10 at 13:35
1  
You can't really apply MVC with webforms because of the way webforms work and postbacks effecting the way you would work with the "views" or in webforms case the aspx page. You can properly mimic a controller-view type setup, but you wouldn't be truly passing things to the views, so ultimately, it's a hacked MVC which kinda defeats the point. MVC official also makes RESTful URLs really simple and easy, not so easy with generic ASP.NET unless you are running the latest IIS in your production environment. – Wil Mar 22 '10 at 13:35

There are many points you can start from. I think a good one could be this: http://net.tutsplus.com/tutorials/asp-net/asp-net-for-php-developers/

followed by this: http://net.tutsplus.com/tutorials/asp-net/asp-net-from-scratch-lesson-1/

You can also check the others tutorials: http://net.tutsplus.com/category/tutorials/asp-net/

Once you have gained a bit of confidence with the tools and the language basics (you also have to choose which language to learn, and I would personally advice you to choose C#, because from that one you can "jump" to almost any other mainstream OO language), you can go deeper into the language, because most of the job is done out of the asp page itself.

share|improve this answer

The ASP.Net site has a lot of great and targeted video tutorials for both MVC and WebForms.

share|improve this answer

There are plenty of on the web. But I suggest to search mostly MSDN knowledge based articles, because they are very much consistent and almost without errors. Also I will advise to spend few bucks for the book, which is latest. I generally prefer the APRESS one. Start with small project (like beer project written in c#, and available in the codeplex), and learn to reverse engineer. My experience is, if you go random on the web and reading blogs, tips and trick, writing small programs, It would be difficult to move into .NET, in terms of job.

share|improve this answer

I always go to Microsoft MSDN resources for Microsoft related technologies and have always been statisfied.

  1. ASP.NET
  2. MSDN LIBRARY ASP.NET
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.