View Single Post
  #10 (permalink)  
Old 05-01-2010, 07:12 AM
onealgrambal onealgrambal is offline
Junior Member
 
Join Date: Mar 2010
Posts: 19
Default

Active Server Pages (ASP) is Microsoft’s early foray into the server side scripting engines that were meant to dynamically create web pages as they are needed. An example of a dynamically created web page is an on-line calculator where you input two number and after you’re done it presents you with the sum. Creating that in HTML would require a lot of pages, one for each possible result. But with ASP, you can write a single short script that can handle this easily. ASP has seen a fair share in the internet creating pages on the fly.

ASP.NET aims to make the transition to web programming easier for those who are already knowledgeable in creating programs for Windows. ASP.NET also offered some improvements over its predecessor.

Here are some of the advantages of ASP.NET over ASP:

• ASP.NET takes advantage of the additional features in the .NET library allowing its pages to be coded in any of the other languages included in .NET.
• ASP.NET also has a very wide array of libraries and controls that can be used to build a web page quickly and easily. It also had a lot of the commonly used templates like menus.
• Error Handling has also been improved compared to ASP by making use of the try-catch blocks and exception handling.
• A compiled code format allowed ASP.NET scripts to perform faster during execution since it doesn’t need to be compiled by the server when called. It also meant a lot less errors when it is already deployed since errors were easily found when you attempt to compile a script..
Reply With Quote