Difference between asp and asp.net [closed] Difference between asp and asp.net [closed] asp.net asp.net

Difference between asp and asp.net [closed]


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


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.


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 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 alibrary)
  • C #, J #, VB.NET, they are the mainscript 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.