Diffrence Between ASP and ASP.NET
| The points of difference are as follows:
ASP.Net web forms have a code behind file which contains all event handling code. ASP does not have such facility to separate programming logic from design. ASP.Net web forms inherit the class written in code behind. ASP does not have the concept of inheritance. ASP.Net web forms use full fledged programming language, while ASP pages use scripting language. ASP.Net web applications are c |
|
| onfigurable (web.config) while ASP applications are not.
ASP.Net webforms can use custom controls through the @register directive, which is not available with ASP. ASP.Net web forms have ADO.Net which supports XML integration and integration of data from two or more data sources,while ASP has ADO which is a simple COM object with limited facilities. | |
