Click here to Skip to main content
15,885,936 members
Articles / Data
Article

Tiered Architecture

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
11 Oct 2013CPOL 7.8K   3  
3 - Tier Architecture is like following : 1. Presentation Layer2. Business Logic Layer /Data Manager Layer3. Data Access Layer The

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

3 - Tier Architecture is like following :

1. Presentation Layer

2. Business Logic Layer /Data Manager Layer

3. Data Access Layer 

The communication between all these layers need to be done using Business Entities.

1. Presentation Layer is the one where the UI comes into picture. Presentation layer contains pages like .aspx or windows form where data is presented to the user or input is taken from the user.

2. Business Logic Layer is the one where all business logic are implemented. It contains business logic, validations or calculations related with the data, if needed.

3. Data Access Layer is the one which communicates directly to the database. DAL contains methods that helps business layer to connect the data and perform required action, might be returning data or manipulating data

 

Data from one layer to other needs to be transformed using Entities.

This article was originally posted at http://wiki.asp.net/page.aspx/1162/tiered-architecture

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
The ASP.NET Wiki was started by Scott Hanselman in February of 2008. The idea is that folks spend a lot of time trolling the blogs, googlinglive-searching for answers to common "How To" questions. There's piles of fantastic community-created and MSFT-created content out there, but if it's not found by a search engine and the right combination of keywords, it's often lost.

The ASP.NET Wiki articles moved to CodeProject in October 2013 and will live on, loved, protected and updated by the community.
This is a Collaborative Group

754 members

Comments and Discussions

 
-- There are no messages in this forum --