ASP (Active Server Pages) is a scripting language used to create dynamic web pages, while ASP.NET is a web application framework developed by Microsoft for building dynamic web sites, web applications, and web services.
Example:
ASP:
ASP.NET:
protected void btnSubmit_Click(object sender, EventArgs e)
{
lblName.Text = “Hello ” + lblName.Text;
}