can any one explain about 3-tier architecture and how to
deploy 3 layers of 3-tier architecture in 3 different
servers.plz send me .net code
Answer / nitin kumar
3 tier architecture is sliced into three layers.
1) Presentation / application layer : that consists of all
the UI part which is shown to the screen.
2) Business logic layer : which contains all the business
logic for manipulation and ways to handle data.
3) Data access layer : which comunicate to database and
pull all the data from data server and provide data to
business layer.
Each layer communicated to its nearest layer only ie.
Presentation layer can communicate to Business layer and
vice versa.
In 3 tier architecture there are basically two are the
assemblies for BLL and DAL.
if we have to deploy these on three different server than
we need to do something like:
Server 1 : Database server : (SQL Server / Oracle)
Server 2 : Business Server : Contain Assemblies and
communicate to Presentation layer using web service or WCF.
Server 3 : Presentation Server : Contain the UI part to
display data fetched from Business layer consuming the
Webservice or WCF.
Is This Answer Correct ? | 14 Yes | 3 No |
Difference between .NET and previous version?
How can you dynamically add user controls to a page?
What is state management in asp.net with example?
What is session tracking & methods?
what is the difference between server.Transfer and response.redirect in .net
Which protocol is used in a web api?
What is SOAP, UDDI and WSDL ?
2 Answers Infosys, Network, TCS, Wipro,
We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?
What does AspCompat="true" mean and when should I use it?
Explain the difference between webfarm and webgardens in .net?
How can we prepairing Interview
I am opening Crystal Report in asp.Net 3.5. Report is opening very well but when I click on Refresh button of Crystal Report then it gives "Missing Parameter values" I also tried property of CR Viewer like crViewer.ReuseParameterValuesOnRefresh = True But it is not working. Plz give me solution.