What are the differences between the ASP languages?
Discuss What are the differences between the ASP languages? in the ASP Programming forum on Dev Shed. What are the differences between the ASP languages? ASP Programming forum discussing Active Server Pages coding techniques and problem solving methods. Use VBScript or Jscript to make dynamic web applications.
Receive the tools necessary to be the rock star of your field. Our 12-month program teaches you the evolving world of multi-channel marketing as well as the complex issues and opportunities found in the industry.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Web development can be a daunting task, even for specialists. There is a lot of information to absorb and a lot of technologies to learn in order to manage a superior website. When trying to learn the ropes, developers need a reliable source to introduce new ideas that can be easily implemented. When working on large projects, even web veterans may run into a technology or an aspect of a technology that they are unfamiliar with.
Posts: 2,743
Time spent in forums: 2 Months 1 Week 7 h 27 m 52 sec
Reputation Power: 1707
I suggest you take a look at following pages:
http://www.microsoft.com/net/
http://www.asp.net/
http://en.wikipedia.org/wiki/ASP.NET
http://en.wikipedia.org/wiki/Active_Server_Pages
Posts: 6
Time spent in forums: 1 h 21 m 8 sec
Reputation Power: 0
ASP.NET is the latest version provided by the Microsoft.But you can't say that it is the updated version of .net. Both of these are totally different from each other.
Posts: 13,894
Time spent in forums: 1 Month 3 Weeks 4 Days 15 h 10 m 20 sec
Reputation Power: 4227
ASP is not a language. Unlike php which is both a web server framework and a language, asp refers to a web server framework supporting different languages. "Classic" asp refers to older style asp framework using various scripting languages. asp.NET refers to newer style web code based on the Microsoft NET framework.
asp.NET offers C# and VB as primary coding languages.
classic asp supports server-side vbscript, javascript, perlscript and a couple other lesser-known custom scripting languages.
__________________
======
Doug G
======
It is a truism of American politics that no man who can win an election deserves to. --Trevanian, from the novel Shibumi
Posts: 12
Time spent in forums: 4 h 4 m 40 sec
Reputation Power: 0
An Active Server Page (ASP) is an HTML page that includes one or more scripts that are processed on a Microsoft Web server before the page is sent to the user.
ASP is a feature of the Microsoft IIS.
For Web service applications, Microsoft provides a latest version of ASP support called ASP.NET.
Posts: 67
Time spent in forums: 15 h 12 m 13 sec
Reputation Power: 2
Major difference: Classic ASP is Interpreted. ASP.NET is Compiled. If code is changed, ASP.NET recompiles, otherwise does'nt.
And ASP works with VB as the language. ASP.NET works with VB.NET & C# as the languages.
Posts: 13,894
Time spent in forums: 1 Month 3 Weeks 4 Days 15 h 10 m 20 sec
Reputation Power: 4227
Quote:
Originally Posted by diyaots
Major difference: Classic ASP is Interpreted. ASP.NET is Compiled. If code is changed, ASP.NET recompiles, otherwise does'nt.
And ASP works with VB as the language. ASP.NET works with VB.NET & C# as the languages.
This isn't correct. You can have a compiled asp application. VB is not a directly supported language in classic asp, however vbscript is.
Posts: 404
Time spent in forums: 4 Days 23 h 55 m 20 sec
Reputation Power: 142
Quote:
Originally Posted by kristy85
There is ASP classic, and ASP.NET. I personally don't like .net because of the markup it generates. I want control of what the server is generating.
ASP Classic is similar to PHP in that you have control of what the script is doing.
Great reason to prefer classic over .NET.
NOT.
Classic is a joke. It is interpreted/compiled. That's a big deal. You don't get an validation if you misspell a variable. Code re-use is much tougher.
Yes, .NET does generate some ugly code. You can use MVC if you don't like that, but complaining about the markup is ridiculous. You can work around that, but you can't work around the glaring weaknesses that is classic asp. ugh.