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

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


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.


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


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.