Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
Any one know site in which step by step explanation of 3 tire architecture is given or
explain me form your half.
Posted
Comments
Vipin kumar.P 6-Jun-13 1:29am    
may be you can try the following Site
http://channukambalyal.tripod.com/NTierArchitecture.pdf
Vipin kumar.P 6-Jun-13 1:29am    
Try the following you will get the brief Idea
http://www.codeproject.com/Articles/11128/3-tier-architecture-in-C

You may search in Google, by 3 tier architecture.

Basically 3 tier architecture consists
1. UI
2. BL
3. Database

Application UI interacts with the user by taking input and provides output.

BL or Business Logic layer deals with the what are the principles or logic to implement application

Database is for storing the tables, values ....

UI -> BL -> Database

UI can interact with BL, but not Database
BL can interact with both UI and Database
Database can interact with only BL, but not UI
 
Share this answer
 
Have you check this link with a sample...
Three Layer Architecture in C# .NET[^]
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900