What is ASP.NET? what's more,In it's ARCHITECTURE

What is ASP.Net?

ASP.Net is a web advancement stage given by Microsoft. It is utilized for making online applications. ASP.Net was first released in the year 2002.

The main rendition of ASP.Net sent was 1.0. The latest adaptation of ASP.Net is form 4.6. ASP.Net is intended to work with the HTTP convention. This is the standard convention utilized over all web applications. 

ASP.Net applications can likewise be composed in an assortment of .Net dialects. These incorporate C#, VB.Net, and J#. In this part, you will see some essential thing of the .Net system. 

The full form of ASP is Active Server Pages, and .NET is Network Enabled Technologies.

ASP.NET Architecture and its Components

ASP.Net is a framework which is used to develop a Web-based application. The basic architecture of the ASP.Net framework is as shown below.

                                          ASP.NET Architecture Diagram

The architecture of the.Net framework is based on the following key components
  1. Language – A variety of languages exists for .net framework. They are VB.net and C#. These can be used to develop web applications.
  2. Library - The .NET Framework includes a set of standard class libraries. The most common library used for web applications in .net is the Web library. The web library has all the necessary components used to develop.Net web-based applications.
  3. Common Language Runtime - The Common Language Infrastructure or CLI is a platform. .Net programs are executed on this platform. The CLR is used for performing key activities. Activities include Exception handling and Garbage collection.
Below are some of the key characteristics of the ASP.Net framework
  1. Code Behind Mode – This is the concept of separation of design and code. By making this separation, it becomes easier to maintain the ASP.Net application. The general file type of an ASP.Net file is aspx. Assume we have a web page called MyPage.aspx. There will be another file called MyPage.aspx.cs which would denote the code part of the page. So Visual Studio creates separate files for each web page, one for the design part and the other for the code.
  2. State Management – ASP.Net has the facility to control state management. HTTP is known as a stateless protocol. Let's take an example of a shopping cart application. Now, when a user decides what he wants to buy from the site, he will press the submit button.
    The application needs to remember the items the user choose for the purchase. This is known as remembering the state of an application at a current point in time. HTTP is a stateless protocol. When the user goes to the purchase page, HTTP will not store the information on the cart items. Additional coding needs to be done to ensure that the cart items can be carried forward to the purchase page. Such an implementation can become complex at times. But ASP.Net can do state management on your behalf. So ASP.Net can remember the cart items and pass it over to the purchase page.
  3. Caching – ASP.Net can implement the concept of Caching. This improve's the performance of the application. By caching those pages which are often requested by the user can be stored in a temporary location. These pages can be retrieved faster and better responses can be sent to the user. So caching can significantly improve the performance of an application.
ASP.Net is a development language used for constructing web-based applications. ASP.Net is designed to work with the standard HTTP protocol.





Post a Comment

0 Comments