Pages

Men

rh

6/23/2012

Difference between Asp.Net and Asp

Asp.Net:-
  • The file name extension will be .aspx
  • It supports caching in 3 ways
  • Provides security with Authentication and Authorization
  • It provides validation controls to perform validation.
  • It requires Asp.Net_ISAPI.dll and System. Web dll files.
  • It provides proper memory management
  • It is compile based.
  • Error handling will be available with Try catch Finally.

Asp:-
  • The file extension will be .asp
  • It supports only entire page caching.
  • It does not provide any security
  • It requires manual coding to perform validation.
  • It requires asp dll file.
  • It provides poor memory management.
  • It is interpreted based.
  • Poor error handling will be available.

No comments :

Post a Comment