.Net Architechture
-
Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,
Prya
-
Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,
Prya
-
Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,
Prya
n-tiered development is a big topic. If the articles you found with google don't make it clear, the next step is to find a book on the topic.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,
Prya
Please google first then ask question here if you didn't understand anything in that
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Hi All, Please give me idea about the .Net Architecture.(3-tier Architechture). In This What the Presentation , Business Logic and Data Access. Please provide me the information r suggest some site to get. Thanks and Regards,
Prya
Commonly .NET applications are developed using 3-Tier(layer) architecture. Most of the Application Logic and Data Access Code resides in seperate components for easy maintainance and Code reusability.
Presentation Layer
This deals with the User Interface of the application. It is responsible for delivery of information to the end user and to the Application.Business Logic Layer
This Layer Process the Data and Moves the Data Between Presentation and Data Access Layer. This layer physically separates the Presentation Code and Data Access Code. It acts as an interface between these two layers.Data Access Layer
Since ADO.NET is the Data Access technology under .NET, the ADO.NET code to communicate with the Database is written in this layer. I made it very precise to give you an Idea what it is. Hope this helps...Regards
- J O N -