What is 3 tier architecture in dot net?
What is contained in the data base layer? Does it again consists of classes for connecting to database?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amit ChoudharyPosted Jul 11, 2011, 1:25 AM
You are absolutely right but it not just contained the connecting classes but also the methods for getting the results in desired format.
Look at the recommended article section in the right.
Thanks.
Jiteendra SampathiraoPosted Jul 11, 2011, 2:01 AM
what amit said is right...
Advantages:
- The benefit of writing the presentation and business layered architecture in different languages is that it is an advantage of the presentation and business layers is that it is feasible to use different developer teams to work on each. It means that only PHP skills are required for data access layer and business layer, and HTML, CSS and XLS skills for presentation layers. It is easier to find a developer with skills in one of these rather having a kind of developer having all of the skills.
- Another main advantage of using XML/XLS in the presentation layer is that it the output can be changed from HTML to WML or PDF or any other format using a different XLS style sheet. XLS files can be used to change XML documents into a number of formats and not only HTML.
- It has better wait balancing system because the entire work load is divided.
- Security polices can be imposed without effecting the clients.
Source: WifinotesRefer this link for better understanding...Link
i hope it help you....