Sensors and network administering


sensornet-work.com keyword stats



Most current MSN search phrases:

how lasor sensors work speed

N-tier Architecture in Asp.net

Âpassing the data retrieved to the
presentation layer in a DataReader or DataSet
Architecture is an important feature and theobject, or a custom collection object. The
very first step in the development of anData layer gets the data from the business
application. n-Tier the term is used forlayer and sends it to the database or vice
multiple tier or multiple layers. n-Tierversa. This layer is further divided into two
Architecture splits the solution process intosub layers Business Logic Layer (BLL) and
different projects based on the businessData Access Layer (DAL). DAL is responsible
requirements. The main advantage of usingfor accessing data and forwarding it to BLL.
n-Tier is that the complexity associated withIn ASP.NET it uses SqlClient or OleDb to
the business and the process is reduced andretrieve the data and send it to BLL in the
it is easy to work with. The elements ofform of a DataSet or DataReader. BLL
performance, scalability and future(Business Logic Layer) is responsible for
development issues need to be considered whenpreparing or processing the data retrieved
deciding on the architecture of theand  sends  it  to  the  presentation  layer.
application depending on the priorities
required.The Data layer gets the data from the
business layer and sends it to the database
The n-Tier application has three tiers oror gets the data from the database and sends
layers, they are called the presentationit to the business layer. In ASP .NET it is
tier, the business tier and the data tier.an SQL Server or Access database. It can also
Each layer interacts with the layer directlybe  Oracle,  mySQL  or  even  XML.
below, and has specific function to perform.
Presentation Layer is responsible forIn an ASP.NET n-tiered architecture web pages
displaying user interface to eitherdo not make direct calls to the database. A
programmer or end user. Programmer uses thisgiven layer only communicates with its
layer for designing purpose and to get theneighboring layers. ASP.NET Web pages should
data back and forth. In ASP.NET it includesreference custom objects defined in the
ASPX pages, user controls, server controlsbusiness object layer. These objects provide
and sometimes security related classes anddatabase  information  in  a class structure.
objects.
The partitioning of ASP.NET applications into
The Business layer works as a mediator tofront-end, middle tier and back-end layers,
transfer the data from presentation layer. Inthe n-Tier architecture supports a more
the three tier architecture the data accessuniform, building block approach to
layer is not made to interact with theapplication designs. Hardware and software
presentation layer. The architecture infor presentation, application and database
ASP.NET includes using SqlClient or OleDbfunctions can be scaled separately, and
objects to retrieve, update and delete dataincluded more easily into complex e-Business
from SQL Server or Access databases andenvironments.



1 A B C 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95