where 1)Presentation Layer
2)Bussiness lagic layer
3)Data access layer
Helper class to declare properties.
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.
Rohatash KumarPosted Dec 13, 2012, 3:52 AM
Presentation Layer (UI)
Presentation layer contains pages like .aspx or windows form where data is presented to the user or input is taken from the user.
Business Access Layer (BAL) or Business Logic Layer
BAL(Business Access Layer) contains business logic, validations or calculations related with the data, if needed. I will call it Business Access Layer in my demo.
Data Access Layer (DAL)
DAL(Data Access Layer) contains methods that helps business layer to connect the data and perform required action, might be returning data or manipulating data (insert, update, delete etc). For this demo application, I have taken a very simple example. I am assuming that I have to play with record of persons (First Name, Last Name, and Age) and I will refer only these data throughout this article.
Shankar MPosted Dec 13, 2012, 12:25 AM
Please view this link, this explains you clearly with each of these layers.
http://www.codeproject.com/Articles/36847/Three-Layer-Architecture-in-C-NET
Happy Learning..
Vishnujeet KumarPosted Dec 12, 2012, 11:23 AM
http://www.dotnetfunda.com/articles/article71.aspx
Pranjal MishraPosted Dec 12, 2012, 6:16 AM
Do u think that,this might be because of reference problem?
Pradip PandeyPosted Dec 12, 2012, 5:44 AM
Hope it will help.
Pranjal MishraPosted Dec 12, 2012, 5:33 AM
below is my code,can u tell me whats the prob.
I have included usng system.Configuration.
just because ofthisim getting stuck up.
Satyapriya NayakPosted Dec 11, 2012, 10:07 AM