Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
help needed in this with coding please.
Posted
Comments
[no name] 23-May-12 8:42am    
What help do you need?
eyecondeveloper 30-Aug-13 8:32am    
well it is too late to reply but thanks anyways i solved it.

Here are two application developed using n-tier architecture

YaBlogEngine - A Tiny Blog Engine written in ASP.NET/C#[^]

YaMessaging - A simple e-mail like messaging application[^]

The first one will even explain about the n-tier architecture and how it is designed and developed that way
 
Share this answer
 
Comments
eyecondeveloper 11-Sep-13 1:38am    
thanks rahul
To understand about n-tier, read about 3 tier here and see how it works:
Create a class library - BusinessLogic (2nd layer)
Create a class library - DataAccess (3rd layer)

Now, from your UI (1st layer), use the object model and pass on to BusinessLogic project class. This class is a Business logic class. Do the changes as per your need here.
Now, pass on the changed data from business logic class to dataAccess project class. In this class, use ADO.NET and pass on the needed values to Stored Procedure.

For getting back data, it will be transferred from DA to BL and then BL to UI layer.
Have a look at these, explaination with samples:
3-tier architecture in C#[^]
3-Tier Architecture Examples[^]
3-Tier Architecture in ASP.NET with C#[^]

Now you can put as many layers in between UI & DB layer to increase it from 3-tier to n-tier as per your need.
 
Share this answer
 
Comments
eyecondeveloper 11-Sep-13 1:40am    
thanks sandeep
Sandeep Mewara 11-Sep-13 9:44am    
Welcome.

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