ASP (Active Server Pages) is a server-side scripting language developed by Microsoft. It is used to create dynamic web pages and is embedded into HTML.
ASP.NET (Active Server Pages .NET) is a server-side scripting language developed by Microsoft. It is a more powerful version of ASP and is based on the .NET framework. It allows developers to create dynamic web pages and web applications more efficiently than with ASP.
Example:
ASP:
ASP.NET:
void Page_Load()
{
string message = “Hello World”;
Response.Write(message);
}