vote up 8 vote down star
2

My colleague here argues that new programmers must learn ASP first, before they learn ASP.Net.

I seem to agree with him as most new programmers who start with ASP.Net do not understand web get, post and state management :(

Which is best to learn web programming Classic ASP or ASP.Net?

flag

11 Answers

vote up 29 vote down check

I'd pick ASP.NET MVC over classic ASP. The problem with classic ASP is the support level for it. With MVC, you learn both about web get/post and state management, while at the same time getting the advantage of using your favorite OO language.

link|flag
Agreed. MVc lets them learn the structure of web development with less of the the overhead and confusion of proprietary technology. – le dorfier Dec 4 '08 at 7:42
+1 - Not surprisingly, a great answer Phil. Even if you are a bit biased. ;-) – joseph.ferris Dec 4 '08 at 15:06
2  
I bet if you ask Haack what his favorite shampoo is I bet he responds with ASP.NET MVC. – jfar Dec 4 '08 at 17:42
2  
I'd respond with Mint ASP.NET MVC. – Haacked Dec 4 '08 at 19:56
Phil, do you have book recommendation which cover both web development and ASP.Net MVC for new programmers? – Kishork Dec 5 '08 at 6:50
show 2 more comments
vote up 1 vote down

There is very little value in starting out with ASP. If you were an ASP programmer back in the day then you can appreciate some of the concepts that have carried on into ASP.NET. The fact that IIS 7 and newer versions of Visual Studio are not really that ASP friendly means that learning it as a new programmer is really more hassle than its worth. Start with what's current is what I say because its what everyone's doing.

Also, be solution oriented - language should be secondary. At the end of the day you need to deliver something that works which makes the customer happy.

link|flag
vote up 0 vote down

I would recommend just going with ASP.Net. ASP is so old a technology that they will have to learn so many work arounds to things that are common place.

I would also go with straight ASP.Net over MVC as the jury is still out (for me anyway) on how valuable MVC really is. It takes a lot of control away from the developer.

link|flag
vote up 0 vote down

Why you should learn classic ASP at all? It is dead; no new work is done in it.

If you want to learn a programming model that works the way that the web works (Which Asp.net webforms does not, it is a leaky imitation of windows forms), there are modern models like ASP.Net MVC.

link|flag
vote up 2 vote down

I agree with others here that learning the HTTP request/response model is the key. I have also noticed that many .NET developers don't understand the HTTP model. I learned it using ASP, but .NET WebForms makes it easy for developers to not need to know it. So I agree that ASP.NET MVC would a great way to do both .NET and learn the HTTP model.

link|flag
vote up 2 vote down

It's the equivalent argument of saying something like:

"You must learn pascal before you learn C++!"

You're comparing 2 different languages & platforms.

link|flag
I think you sort of missed the point. OPs argument was that starting off with web development by using ASP.NET hides the gory details of HTTP from you. This does you a massive dis-service in the long run. I speak from my own experience, as the first web development work I did was WebForms. – Kirschstein Jun 26 at 9:35
vote up 2 vote down

I would say don't learn classic ASP and then ASP.NET. Classic ASP is dead. Or should be.

Why not learn ASP.NET (MVC and WebForms) while also dabbling in PHP. Looking at PHP would help a developer get a sense of what its like working at a lower abstraction level.

link|flag
vote up 0 vote down

You don't really learn ASP.NET, you'll learn a language such as C# or VB.NET. But yes .NET > !.NET

link|flag
vote up 5 vote down

I'd say most new web developers would be better off initially learning about HTTP specifically without muddying things with either classic ASP or ASP.NET.

Once they have the fundamentals, then I'd suggest moving straight to ASP.NET and a compiled/object oriented coding language.

While classic ASP specifically is more compact and focused (smaller group of objects to grasp), most code written using it is unfortunately in VBScript.

Some of the most atrocious code I've ever seen was classic ASP web sites in VBscript. While it is probably possible to write maintainable and clear code in VBScript, the language itself seems to almost encourage the complete opposite.

Also, it sounds like ASP.NET MVC would be a better choice for your environment as it "hides" less about HTTP from the developer. For certain types of application it is a better choice then ASP.NET Web Forms.

So in summary, skip the classic ASP and avoid all of the bad habits and problems that it can introduce.

link|flag
vote up 1 vote down

Both languages have their individual advantages.Though, I agree with reply by 'Haacked' and 'John Sheehan' both. Every one will have their individual opinions. So better start learning in which you are interested.

link|flag
vote up 2 vote down

It wouldn't hurt to start with Classic ASP, but I don't think it would be worth it since with a little effort you can understand what Webforms is abstracting away from you. If you want the best of both worlds, start with ASP.NET MVC.

link|flag

Your Answer

Get an OpenID
or

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