Are there benefits to Classic ASP over ASP.net [closed]

Having worked with Classic ASP for about 2 years now by creating a few 100 simple web forms I can't see a good reason for switching to .net; however, I'm not that versed in .net so I'm sure I could be missing a few things.

Some points that I often hear around work can be found here: http://www.packtpub.com/article/Classic-ASP (not that I share all of these thoughts, but it's a good jumping off point)

I'm very interested to hear what others have to say on this matter.


Solution 1:

You're missing more than a few things! ASP.NET is orders of magnitudes more productive, robust, and maintainable than old-school ASP ever thought about being. Server side controls, third-party controls, master pages, forms authentication, forms validation, an OO model than encourages appropriate application partitioning, easy deployment, built-in debugging and tracing, state management.

You even have the choice of WebForms or MVC. It's not an understatement to say that you are simply out of your mind if you don't thoroughly investigate what you're missing.

Solution 2:

If you like ASP, and want to move to ASP.NET, skip Webforms and learn MVC.

Solution 3:

The biggest issue for me is that I create applications, not websites...The UI is a minor part of the problem, the big part is writing the business logic layer, and various enterprise communication components (Connecting to SAP using SOAP? No Problem!).

The .NET Toolkit allows me to program in a wonderful object oriented language (C#) and has a robust framework to help out.

VbScript is a godawful language to try and write a business application in.

However, if all you do is a simple little webform, then sure, use VbScript.

As far as your link, it basically boils down:

  • WaaWaa, I don't like Visual Studio
  • WaaWaa, I want to edit production code on the production server like an idiot.
  • WaaWaa, I don't know that deploying a single compiled DLL is all that a small site needs to deploy a asp.net app.

Basicly, its ignorance in a nutshell.