Click here to Skip to main content
15,911,711 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi All,

I have been studying C# recently and covered all the basics. At this stage of my learning journey I am struggling with the concepts of application architecture. The various layers and what happens at which layer.
Posted
Comments
ZurdoDev 19-Jan-16 8:18am    
So, what exactly is your question?

1 solution

For the ASP.net You can create following layers

1) DAL Layer: Which is used for the database. All the DB related actions should be performed here only, no where else DB should accessed.
2) BusinessLayer : where you can define the business logic.
3) Presentation Layer: UI display for the user.

You can go through following link for getting basic idea of layers in .net application
Three Layer Architecture in C# .NET[^]
 
Share this answer
 
v2

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