Categories
ASP | ASP.NET |
ASP is the first server-side scripting language developed by Microsoft to design dynamic WebForms. | ASP.NET is a server-side technology used for developing dynamic websites and web applications on the internet. |
ASP uses ADO(ActiveX Data Objects) to communicate with the database. | ASP.NET uses ADO.NET to communicate with the database. |
ASP is written in VBScript. | ASP.NET is written in C#. |
ASP.NET | ASP.NET Core |
ASP.NET is used to build applications for Windows. | ASP.NET Core is used for Windows, macOS, and Linux. |
Uses .NET framework | Uses .NET Core framework |
Single Version | Multiple Versions |
Custom Controls | User Controls |
Custom control is designed for a single application. | User control is designed for multiple applications. |
Custom control is loosely coupled. | User control is tightly coupled. |
User Interface can be changed. | The User Interface is fixed. |
Web Configuration | Machine Configuration |
Web Config is automatically created when an application is created. | Machine Config is automatically installed with Visual Studio. |
File inherits setting from the Machine Config. | Only one Machine Config exists. |