Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Difference between ASP and ASP.NET
Difference between ASP and ASP.NET?
✍: Guest
ASP.NET new feature supports are as follows :-
Better Language Support
? New ADO.NET Concepts have been implemented.
? ASP.NET supports full language (C#, VB.NET, C++) and not simple scripting
like VBSCRIPT..
Better controls than ASP
? ASP.NET covers large set’s of HTML controls..
? Better Display grid like Datagrid, Repeater and datalist.Many of the display
grids have paging support.
Controls have events support
? All ASP.NET controls support events.
? Load, Click and Change events handled by code makes coding much simpler
and much better organized.
Compiled Code
The first request for an ASP.NET page on the server will compile the ASP.NET code and
keep a cached copy in memory. The result of this is greatly increased performance.
Better Authentication Support
ASP.NET supports forms-based user authentication, including cookie management and
automatic redirecting of unauthorized logins. (You can still do your custom login page
and custom user checking).
User Accounts and Roles
ASP.NET allows for user accounts and roles, to give each user (with a given role) access
to different server code and executables.
High Scalability
? Much has been done with ASP.NET to provide greater scalability.
? Server to server communication has been greatly enhanced, making it possible
to scale an application over several servers. One example of this is the ability
to run XML parsers, XSL transformations and even resource hungry session
objects on other servers.
Easy Configuration
? Configuration of ASP.NET is done with plain text files.
? Configuration files can be uploaded or changed while the application is running.
No need to restart the server. No more metabase or registry puzzle.
Easy Deployment
No more server restart to deploy or replace compiled code. ASP.NET simply redirects all
new requests to the new code.
2007-10-24, 4775👍, 0💬
Popular Posts:
How will you freeze the requirement in this case? What will be your requirement satisfaction criteri...
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
How did you implement UML in your project ? PART II Implementation phase / Coding phase (Class diagr...
How does one iterate through items and records in a specified block? One can use NEXT_FIELD to itera...
Can one change the mouse pointer in Forms? The SET_APPLICATION_PROPERTY build-in in Oracle Forms all...