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
2010-01-04 04:52:10
+2
A:
ASP is older (also called "classic ASP"). ASP.NET is newer, using the .NET framework.
Seth
2010-01-04 04:53:09
+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
2010-01-04 04:53:30
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
2010-01-04 05:48:32
+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
2010-01-04 05:05:00