What is the Difference between the ASP and ASP.NET?

ASP:

ASP stands for Active Server Pages. It is Microsoft’s first server-side scripting language and engine for dynamic web pages.

ASP.NET:

ASP.NET is a server-side framework used in web development to produce dynamic pages. Microsoft developed it to help people build dynamic web pages, websites, web apps and services.

Difference between ASP and ASP.NET:

ASPASP.NET
1. It is a partially object oriented language.1. It is fully object-oriented.
2. It uses language as VBScript, JScript.2. It uses compiled language like C#, VB.Net, ASP.Net etc.
3. ASP is interpreted language.3. ASP.Net is compiled language.
4. ASP uses ADO technology to connect database.4. ASP.Net uses ADO.Net technology to connect the database.
5. ASP script code Written with in HTML code.5. ASP.Net programming code written in C# language.