What are the differences between ASP and ASP .Net ?
ASP: Code is Interpreted
ASP.NET: Code is Compiled
ASP: Business Logic and Presentation Logic are in a one file
ASP.NET: Business Logic and Presentation Logic are in divides files (.cs or .vb) and (.aspx) respectively.
ASP: No Web Server Controls
Asp.net maintains its own CLR and is managed as it runs by CLR Where as asp is unmanaged