What is difference between ASP and ASP.NET ?

Answers were Sorted based on User's Feedback



What is difference between ASP and ASP.NET ?..

Answer / mupnesh

ASP is based on a procedural & event driven programming
model.. Whereas ASP.NET is based on object oriented & event
driven programming model.
Application written in ASP.NET are compiled,Whereas ASP are
interpreted.
ASP.NET can only support one programming language on a
page,ASP support muliple programming languages on a page.

Is This Answer Correct ?    5 Yes 0 No

What is difference between ASP and ASP.NET ?..

Answer / ranjith

ASP:
1) this supports scripting languages,generally scripting
languages are interpreter based,so execution will be
slow,and no proper management

2)no server side controls

3)supports inpage technique

4) supports inprocess session

5)uses ADO for database connectivity

6)manual coding to perform validations

7)supports entire page caching towards client side

ASP.NET:

1) supports .net languages.these r compiler based,so
execution will be fast

2)supports server side controls

3)supports inpage ,code behind techniques

4)supports in process,out process session

5) no manual coding to perform validation

6)supports 3 types of caching
a)out put caching
b) fragment caching
c) data caching

Is This Answer Correct ?    2 Yes 0 No

What is difference between ASP and ASP.NET ?..

Answer / swapna

ASP (Active Server Pages) and ASP.NET are both server side
technologies for building web sites and web applications .

ASP.NET is Managed compiled code - asp is interpreted. and
ASP.net is fully Object oriented.

ASP.NET has been entirely re-architected to provide a
highly productive programming experience based on the .NET
Framework, and a robust infrastructure for building
reliable and scalable web applications.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

what is the uses Of Global.asax

3 Answers  


where should write the connection string Show that it will apply whole pages in the website

5 Answers   Symco,


What?s the difference between Response.Write() and Response.Output.Write()?

2 Answers   Siebel, Visual Soft,


What is dataset ?

18 Answers   Infosys, Kuwait University,


explain store procedure and trigger

3 Answers  






Distinguish between Server-side and Client-side code with its functionality?

0 Answers   Siebel,


What are the ways to sending the data in ASP.NET page?

0 Answers  


How does http session work?

0 Answers  


how to retrieve property settings from xml .config file.

0 Answers  


Why asp.net mvc is better than asp.net? : Asp.Net MVC

0 Answers  


Explain how is a property designated as read-only?

0 Answers  


Create the Output by mearging 2 tables and taking common column sid from both you should not use database create table and data in it Randomly table 1 sid sname saddress 1 sa ampt 2 na hyd 3 ha hyd table 2 sid dno dname 1 12 stats 2 23 phy 3 12 stats OutPUt sid sname saddress did dname 1 sa ampt 12 stats 2 na hyd 23 phy 3 ha hyd 12 stats

1 Answers  


Categories