Rajkamal S

Rajkamal S

  • NA
  • 287
  • 32.2k

Difference between asp and asp.net

Apr 18 2012 6:57 AM
difference between asp and asp.net

Answers (2)

0
Senthilkumar

Senthilkumar

  • 0
  • 10.8k
  • 4m
Apr 18 2012 7:03 AM
Hi Rajkamal,

ASP: 

1) ASP is Interpreted language based on scripting languages like Jscript or
VBScript.

2) ASP has Mixed HTML and coding logic.

3) Limited development and debugging tools available.

4) Limited OOPS support.

5) Limited Session and Application state management.

6) Poor Error-Handling Mechanism.

7) No in-built support for XML.

8) No fully distributed data source support.

ASP.Net:
 
1) ASP.Net is supported by compiler and has compiled language support.

2) Separate code and design logic possible.

3) Variety of compilers and tools available including the Visual studio.Net.

4) Completely Object Oriented Support.

5) Complete Session and Application state management.

6) Full proof Error-Handling Mechanism.

7) Full XML Support for easy data exchange.

8) Fully distributed data source support

Accepted Answer
0
Gaurav Gupta

Gaurav Gupta

  • 0
  • 18k
  • 9.3m
Apr 18 2012 7:27 AM
hi rajkamal,

ASP:
  • asp uses scripting language like visual basic
  • asp have no server side controls
  • asp is a object based, not support all the oops concepts.
  • asp has less state management techniques like viewstate is not in asp.
  • asp is less interoperitabililty  with xml.
  • since asp is not part of .net framework, therefore many feature in .net not supported by asp like garbage collector, debugging etc..
  • design code and source code are written in the same page. thus complexity increased.
  • no IDE is provided  in asp.


  ASP.NET..

  • asp.net more language than asp like c#,vb etc..

  • asp has both types of server controls and client controls.
  • asp.net is fully oops supported.
  • visual studio IDE provided in asp.net.
  • part of .net framework have the facilities of .net ,..
  • asp.net follows code behind model..