Difference between ASP.NET and ASP
ASP
- Code Render Block
- Request/Response
- Session - weren't transferable across servers
- Built on top of the Windows and IIS, it was always a separate entity and its functionality was limited.
ASP.NET
- Code Declaration Block
- Compiled
- Event Driven
- Object Oriented - Constructors/Destructors, Inheritance, Overloading.
- Exception Handling - Try, Catch, Finally
- Down-level Support
- Cultures
- User Controls
- In-built client side validation
- It can span across servers, it can survive server crashes, can work with browsers that don't support cookies.
- Its an integral part of OS under the .NET framework. It shares many of the same objects that traditional applications would use, and all .NET objects are available for ASP.NET's consumption.
- Garbage Collection
- Declare variable with datatype
- In built graphics support
- Cultures
Comments
Post a Comment