views:

158

answers:

6

What is the difference between asp and asp.net?

+7  A: 

They are too numerous to list here. I suggest you read ASP.NET vs ASP at w3schools.com

Jonathan Sampson
+2  A: 

ASP is older (also called "classic ASP"). ASP.NET is newer, using the .NET framework.

See: http://www.w3schools.com/aspnet/aspnet_vsasp.asp

Seth
+1  A: 

"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.

mopoke
Read here: http://www.asp101.com/articles/jacob/calendar/default.asp :) Classic ASP has obviously not fully support the OOP, but I would add this to your post.
sv88erik
A: 

about 5 years, 3 letters and $50K/year

MrTelly
+1  A: 

A nice read

ASP.NET compared with ASP classic

rahul
+1  A: 

ASP.NET is not the same as ASP. The "old" ASP is now called classic ASP. ASP.NET is a Markup Language can, among other things, use the server server controls to run elements.

As for example:

<form id="MyForm" runat="server">

Then you said that it will run on the server and you have an id to control it.

  • NET is the framework (such as a library)
  • C #, J #, VB.NET, they are the main script languages for communicating with. NET
  • ASP.NET is Markup Language .
    it runs on the server side. It generates xml / html / xHTML even further, to the user. In many ways one can compare ASP.NET, with WinForms. Then there is a way to visually show something to the user.
sv88erik