ASP vs ASP.net

ASP:

  • Asp requires only IIS installation.
  • It supports scripting languages i.e vbscript and javascript.These are interpreted based so it will be burden on the developer
  • To perform validations manual coding is required.
  • It supports only Inpage technique.
  • It supports only Inprocess session.
  • It supports entire page caching.
  • It supports ADO connectivity for database connection.ADO supports connected archietecture.

ASP.NET:

  • Asp.net requires IIS installation and .net framework installation.
  • It supports vb.net and c#.net languages, these are compiler based so it will be less burden on the developer.
  • To perform validations it provides validation controls..ADO.net supports disconnected archietecture
  • It supports inpage technique and code behind technique.
  • It supports in-process session and out-process session.
  • It supports 3 types of caching i.e output caching,fragment caching,datacaching.
  • It supports ADO.net for database connectivity.ADO.net supports Dis-connected archietecture
  • It supports 3 types of authentication.i.e windows based authentication,forms based authentication,passport based authentication.



No comments:

Post a Comment