Hi .,
What is the difference between asp and asp.net ..... in need important points pls help me
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
SenthilkumarPosted Apr 3, 2012, 7:02 AM
selvi subramanianPosted Apr 3, 2012, 8:47 AM
Satyapriya NayakPosted Apr 3, 2012, 7:00 AM
ASP.NET:
1. ASP.Net web forms have a code behind file which contains all event handling code.
2. ASP.Net web forms inherit the class written in code behind.
3. ASP.Net web forms use full fledged programming language
4. ASP.Net web applications are configurable (web.config)
5. ASP.Net webforms can use custom controls through the @ register directive
6. ASP.Net web forms have ADO.Net which supports XML integration and integration of data from two or more data sources
ASP:
1. ASP does not have such facility to separate programming logic from design.
2. ASP does not have the concept of inheritance.
3. ASP pages use scripting language.
4. ASP applications are not.
5. It is not available with ASP.
6. while ASP has ADO which is a simple COM object with limited facilities.
Thanks
Prasant JinagaPosted Apr 3, 2012, 6:56 AM
Here are the differences between asp and asp.Net
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.
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
Thanks,
Prasant