vote up 3 vote down star
1

Related:

Best ways to teach a beginner to program?

I am teaching my brothers ASP.NET programming and they are starting with a very small amount of background knowledge. They know things like declaring a variable, what a class is and what a page is.

I want to teach them to be good web developers in the shortest amount of time.
The problem I face with them is that they are not interested in reading books. They are interested in doing projects and only read when they encounter a problem they cannot solve.

The level I want them to reach is:

  1. ASP.Net professional.
  2. HTML professional.
  3. CSS aware.
  4. JavaScript know well how to edit, and write small functions.
  5. SQL Server to write simple statements for CRUD.

What is the best method to teach them fast and effectively?

flag

RichB: You win! :) – Bill the Lizard Mar 27 at 16:54
Bill, we collided, I fixed it. Rolling back again to follow standard dupe conventions. – Rich B Mar 27 at 16:54
Please who is trying to close my question because of Duplicate, i am asking about asp.net and the another question is talking about Python, please let my question survive – Amr ElGarhy Mar 27 at 16:57
"Best ways to teach a beginner to program" is totally another subject and is not related to web applications development. – Koistya Navin Mar 27 at 17:19
@Koistya if you want the question to stay open, you should take EVERY effort to make it unique. I added some ASP.NET-specific statements to your question. You can probably add more. – Rex M Mar 27 at 17:30
show 1 more comment

closed as exact duplicate by Bill the Lizard, Josh, Rich B, Ólafur Waage, vartec Mar 27 at 17:08

8 Answers

vote up 3 vote down check

Get them working on a small but engaging project, something that they have a stake in. Don't know about their age, but a school website, family blog or whatever. Ideally, something that they both (and maybe you yourself as well) can work on. They'll learn from each other. It'll keep them engaged much more than little fake exercises (hey, even the word sounds off-putting...)

link|flag
vote up 1 vote down

I always found if you can give someone the motivation, the rest will come together. Find a project they would love to be involved in (sometimes the hardest part), and determine what depth or level you would like to have them develop at. I always loved the hands on approach, where the hands would get dirty and they would effectively learn from their mistakes. Keep it simple, and keep it in the right direction. Lather, Rise, and Expand.

Best of luck!

link|flag
vote up -1 vote down

By doing some projects in the areas you mention they will learn relatively fast, but they will NOT have good understanding of what's involved. This means they will be in trouble when they will hit problems. I suggest giving them the task of creating a web server in C that can answer simple requests and a client in C# that can interpet HTML and save links in DB. They'll earn much more in the process

link|flag
I have to disagree. He wants them to "be good web developers in the shortest amount of time" Learning how to create a web server isn't going to help them at that. Just knowing the basics of HTTP is enough (404 errors, stateless and the like) – Martin Mar 27 at 17:16
There's no way to be "good developers in shortest amount of time". As I stated above the will learn the basics fast, but when having problems will have no clue. – Albert Mar 27 at 17:28
vote up 3 vote down

Start from learning XHTML and CSS and create a few websites using these technologies. It is possible to create a really great (though static) websites using just XHTML and CSS (without any server-side technologies). After you will get proficient with this stuff go ahead and learn jQuery. With jQuery, XHTML and CSS you will be able to create amazing UI - web user interfaces. I must tell you that good web UI designers earn a lot of money even without knowing any server-side programming and database stuff.

Here is a great book on this subject:

HTML, XHTML, and CSS: Your visual blueprint for designing effective Web pages by Rob Huddleston

alt text

For begining you will also need to get familiar with some good HTML/CSS editor. I recommend Microsoft Expression Web 2. Though you may choose any other like Dreamweaver for example. For example, ti will allow you to create websites using templates by using them you will be able to create static websites much faster.

Watch a few videos and screencasts showing how to work in this program.

Expression Web Webcasts

Then you may want to start learning some server-side technologies like ASP.NET MVC and Microsoft SQL Server.

There are lot's of free learning resources at www.asp.net/learn/ including videos, webcasts, tutorials, sample applications etc.

If you wan't to geat familiar with new and cool stuff related to web applications development you may also want to watch videos from MIX 09.

And here you may find good recently published books related to web applications development with ASP.NET, SQL Server, jQuery, XHTML, CSS...

http://www.riaguy.com/books/

link|flag
vote up 1 vote down

I learned Python by finding out about PyGame and thought "Hey that looks cool." I started with a concept of a game and just went for it. It also helped that my friends already knew python and were able to work with me on it.

They can pick things up as you go, especially since they have YOU helping.

Find a project and work with them.

What is the best style to teach them fast and effective?

Decide on a project and do it with them. Since you are results oriented, simply start developing.

It could be that they might not be motivated by themselves to figure stuff out on their own. If they have you helping them through problems, this gives them a leg up. That is why I recommend finding a project and working with them on it.

A lot of people have had a programming mentor at one point in their lives, showing them how things should be done. You could be theirs.

link|flag
vote up 1 vote down

I respectfully refer you to my answer to "I'm New to C# and I don't have any programming experience". Specifically, the portion which suggests you can't rush the process of becoming a "good" developer.

link|flag
vote up 5 vote down

Personally, I have found watching videos the easiest way of picking up a new technology (especially if they don't want to read books)

link|flag
vote up 1 vote down

It's best if you learn the basics and then try to create some more complex application, where you would learn everything more in depth. Reading 10 books doesn't make you professional. You learn much faster when you actually create something what you need.

link|flag

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