What is difference between ASP and ASP.NET ?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Explain the asp.net page life cycle.
If we write return statement in finally block will it works fine or throws any error?
how to increase performance of web site? if there is a page with high load. the content is high then what should we do to increase performance?
3 Answers Emphasis, Mphasis, TCS,
We are using Jscriopt validations and at clint site javascript is not running that time validation would work? if yes then how it would behave?
How is my content secured from unauthorized access?
What is a web pool?
What does mean by a neutral culture?
Write a standard lock() plus double check to create a critical section around a variable access?
Explain login controls.
What data types do the RangeValidator control support?
how can u display multi language (i.e english,spanish...) web site?
Windows Authentication (via Active Directory) and SQL Server authentication (via Microsoft SQL Server username and passwords). Which one is trusted and which one is untrusted?