The code written in ASP.NET is compiled, so
straight ahead it is a performance boost. The code
written in .Net Framework is complied in Common Language
Runtime. ASP.NET can take advantage of early binding,
just-in-time compilation, automatic resource
optimization, runtime profiling, automatic memory
management, enhanced exception handling, and caching
services, right out-of-the-box, this improves the
performance before you start coding. A problem with Web
site’s performance is with data-access.
For example, a database table will spend the majority of
its execution time connecting to the database and
querying the information.
ASP.NET comes with a data-caching module. This
data-caching module allows you to specify what data on
an ASP page to cache and on what conditions to empty the
cache and re-query the data-store.
Active Server Pages .NET provides the most advanced web
development platform created to date. While there are
plenty of familiar features from classic ASP, there have
been some significant changes made to the ASP.NET
architecture. Some of the improvements and new features
are listed below. |