vote up 31 vote down star
29

Does anyone have a suggestion on a good book/whitepaper/online resource that goes a great job of introducing the concept of web development to experienced developers who have done only client development?

I'm not looking for detailed material on the programming technologies we'll be using (ASP.NET MVC, jQuery, etc). Rather, I want to find something to help people get over the hump of understanding the uniqueness of web application development. Something that shines light on the challenges they will face and have to think about.

I would be even happy to find a bigger, topic specific book that happened to have great chapters 1-3 that helped people understand the nature of web development as a preface to the real content of the book. Any kind of resource would be helpful.

Things I have seen people struggle with when new to web development:

  • The general concept of a postback and the idea that that code generally only runs on the web server as a result of an HTTP request
  • The statelessness of HTTP requests and the challenges that that brings
  • The concept of AJAX (without necessarily getting into mechanics of how to do program it)
  • The fact that browsers don't follow standards perfectly
  • Security challenges

Most of these things can be learned piecemeal. I'd like to find a resource that pulls a bunch of information into one place. Mostly just want to get people in the right mindset and have them start thinking about what they need to be thinking about.

Edit:

The context for my quest may also be interesting and possibly relevant. We actually have a pretty decent training course that we put people through when they need to learn this stuff. It takes about 3-4 weeks (including some schedule time for hands on labs). However, in the past few times we have given this class, I have seen those folks that had spent the last 5 years doing traditional windows client development have been less able to absorb the material at the pace that we are presenting it because it takes some time to wrap their heads around how different the web application world is from what they are used to.

That is why I started looking for a primer that we could ask people to go through prior to coming to class. My theory (caveat: I am not a trained educator) is that the class material may be absorbed more quickly and easily if these developers had been introduced to some of these topics in advance.

flag

10  
i love it. Four upvotes, three fave tags and no answers. A very good and very challenging question! – psasik Oct 28 at 15:12
Great question. Having read this I now get a sense of why MS designed WebForms to work similar to WinForms - it was quite an overhead but developers could switch easily. Until recently when they're introducing MVC instead. – Gergely Orosz Oct 28 at 21:53

7 Answers

vote up 4 vote down check

There's a free sample chapter of Building Web Applications with UML 2nd Edition that deals with "Web Application Basics". I found it to be very informative.

The subsequent chapters are also good:

  • Dynamic Clients
  • Beyond HTTP and HTML
  • Security
link|flag
This was very helpful – Erv Walter Nov 2 at 16:24
vote up 2 vote down

Here is a decent web development primer/overview that covers what the first three chapters of your fantasy book might cover.

Honestly, most "beginner" texts i've seen do a decent job of covering the basics in the first few chapters, especially Wrox, the thing is, you need to pick a technology,

Another option is a trainer who can come in and do a week-long boot camp with your developers. The nice thing about this is that you can tailor the training very specifically ahead of time. It is an expensive option but possibly the most effective.

link|flag
We do have great in-person training. I am looking for something to "warm people up" before the training starts so that we can spend valuable training time more effectively. I'll keep looking at beginner texts for a great intro though... – Erv Walter Oct 29 at 18:31
vote up 1 vote down

I think the Head First Books are a great resource for understanding concepts and not just having code thrown at you. They have a HF Web development book that I have not read but have heard good things. I have started their JSP book and it gives a good intro to server client architecture. The books are also silly and fun to read so even if much of the book is review, its an enjoyable one.

link|flag
vote up 0 vote down

This might be what you're looking for: Web Application Architecture: Principles, Protocols and Practices. It has a great overview of protocols, browsers, and a little of some specific frameworks(Rails,etc).

link|flag
The table of contents looks interesting. I'll have to check out the book to see if it really goes into some of the more basic topics though like the structure of a web application. – Erv Walter Oct 29 at 18:32
vote up 0 vote down

I think that the problem domains are too large not to separate out into:

  • A simple resource for html.
  • A simple resource for javascript (or jQuery in your case)
  • A starting resource for your server side templating system (hopefully you have one)
  • And a resource for other server-side development (Asp in your case)

I think that it'd better to start at the simplest bloc and work in those stages. That, after all, will allow them to step quietly into the philosophy of progressive enhancement, and perhaps allow them to be the most effective at a useful stage of work in the shortest time.

I code in php myself, and I keep coming across problems with css (browser incompatibilities mainly) that I wish I had more familiarity with, and might have if I didn't learn in scattershot order, html->php->javascript.

link|flag
But you don't need to know the details of any of those 4 specific areas to learn the fundamentals that the original post talks about. And crucially, it's possible to learn each of these areas to a reasonable degree of competence yet still make simple errors when reasoning about the overall structure of things (like trying to have a Javascript on-click handler call a PHP function to get a value). – Kylotan Oct 28 at 21:54
vote up 0 vote down

I was in this situation a few months ago. The 'for dummies' books didn't help at all. My team was good about ramping me up quite fast with increasingly difficult tasks, and I'd spend 30 minutes peer-programming out a sketch with a buddy on each one.

link|flag
Yep. That is how all of our current good developers got up to speed and it worked fine for a team of 5-10 people. Now we need to scale that to dozens and possibly a few hundred developers over the next year or two. – Erv Walter Oct 29 at 18:34
vote up -1 vote down

"Atlas Shrugged."

If that tome doesn't get them... on the right track, nothing will.

link|flag
2  
-1 : that's -0.5 for not answering the question and -0.5 for recommending anyone read Ayn Rand. – JimDaniel Oct 29 at 20:14

Your Answer

Get an OpenID
or

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