Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between asp and asp.net [closed]

Tags:

What is the difference between asp and asp.net?

like image 527
Domnic Avatar asked Jan 04 '10 04:01

Domnic


People also ask

Is ASP and .NET same?

NET is a software development framework aimed to develop Windows, Web and Server based applications. ASP.NET is a main tool that present in the . NET Framework and aimed at simplifying the creation of dynamic webpages.

What is difference between ASP and ASPX?

ASPX runs on . Net framework. ASP uses VBScript for its code. ASP.NET allows the use of C#, VB.NET and other languages.

What is difference between ASP.NET and C#?

Basically, ASP.NET is a web delivery mechanism that runs either C# or VB.NET in the background. C# is a programming language that runs ASP.NET as well as Winforms, WPF, and Silverlight.


2 Answers

"Classic" ASP uses vbscript for its code. ASP.NET allows you to use C#, VB.NET and other languages. ASP.NET gives you access to all the tools which come with the .NET framework and allows you to write object-oriented code.

like image 113
mopoke Avatar answered Sep 24 '22 23:09

mopoke


They are too numerous to list here. I suggest you read ASP.NET compared with classic ASP Wikipedia.

--

Aside: My original answer referred to a resource on w3schools.com that is today no longer available. If you would like to access it, you may do so by utilizing the Wayback archive: ASP.NET vs ASP.

like image 38
Sampson Avatar answered Sep 20 '22 23:09

Sampson