Three Tier Architecture in ASP.NET [email_address]
Our Discussion What is a 3-Tier concept. What are the various layers. Application layer. Business Logic Layer Data Layer [email_address]
Know How of Tools Tools used: Visual Web Developer 2005 (Free) Visual Studio 2005 (Paid) Databases used: MS SQL Server 2005 MS ACCESS 2003/2007 (with MS-Office package) [email_address]
General 3-Tier Structure [email_address]
.NET 3-TIER Structure [email_address]
Three layers Presentation tier: The top most level of the application is the user interface(Web Browser). The main function of the interface is to translate tasks and results to something the user understands. This is also called the Application layer. Logic Tier: This layer coordinates the application, processes commands, makes logical decisions and evaluations, and performs calculations, It also moves and processes data between the two surrounding layers. Data tier: Here information is stored and retrieved from a database management system. The information is then passed back to the logic tier for processing and then eventually back to the user. [email_address]
Creating ASP. Net project [email_address]
Source of DB DB used with this is the Default NorthWind Database which can be downloaded from here http://www.microsoft.com/downloads/details.aspx?FamilyID=06616212-0356-46a0-8da2-eebc53a68034&DisplayLang=en [email_address]
Connecting to DB [email_address]
The data access layer has four Methods: GetCategories() GetProducts() GetProductsByCategoryID(categoryID) GetProductByProductID(productID) [email_address]
Typed Dataset and Table Adapter [email_address]
Table Adapters TableAdapters provide communication between your application and a database. More specifically, a TableAdapter connects to a database, executes queries or stored procedures, and either returns a new data table populated with the returned data or fills an existing DataTable with the returned data. TableAdapters are also used to send updated data from your application back to the database. Generic Structure : TableAdapter.Fill TableAdapter.Update TableAdapter.GetData TableAdapter.Insert TableAdapter.ClearBeforeFill [email_address]
Database Name [email_address]
Connection string [email_address]
Query [email_address]
[email_address]
[email_address]
User defined queries [email_address]
[email_address]
Samples The DataTables returned by the TableAdapter can be bound to ASP.NET data Web controls, such as the GridView, DetailsView, DropDownList, CheckBoxList, and several others. Sample Code:>> AllProducts.aspx.cs using NorthwindTableAdapters; public partial class AllProducts : System.Web.UI.Page {protected void Page_Load(object sender, EventArgs e) { ProductsTableAdapter productsAdapter = new ProductsTableAdapter(); GridView1.DataSource = productsAdapter.GetProducts(); GridView1.DataBind(); } } [email_address]
Adding parameterized methods [email_address]
Insert,Update and Delete SAMPLE CODE:>> ProductsTableAdapter productsAdapter = new ProductsTableAdapter(); // Delete the product with condition productsAdapter.Delete(…); // Update a record with condition productsAdapter.Update(…); // Add a new product productsAdapter.Insert(…); [email_address]
References http://msdn.microsoft.com/ http://aspnet.4guysfromrolla.com http://www.asp.net For my latest updates: http://www.cognobytes.com/biswadipgoswami/Default.aspx [email_address]

Three tier Architecture of ASP_Net

  • 1.
    Three Tier Architecturein ASP.NET [email_address]
  • 2.
    Our Discussion Whatis a 3-Tier concept. What are the various layers. Application layer. Business Logic Layer Data Layer [email_address]
  • 3.
    Know How ofTools Tools used: Visual Web Developer 2005 (Free) Visual Studio 2005 (Paid) Databases used: MS SQL Server 2005 MS ACCESS 2003/2007 (with MS-Office package) [email_address]
  • 4.
    General 3-Tier Structure[email_address]
  • 5.
    .NET 3-TIER Structure[email_address]
  • 6.
    Three layers Presentationtier: The top most level of the application is the user interface(Web Browser). The main function of the interface is to translate tasks and results to something the user understands. This is also called the Application layer. Logic Tier: This layer coordinates the application, processes commands, makes logical decisions and evaluations, and performs calculations, It also moves and processes data between the two surrounding layers. Data tier: Here information is stored and retrieved from a database management system. The information is then passed back to the logic tier for processing and then eventually back to the user. [email_address]
  • 7.
    Creating ASP. Netproject [email_address]
  • 8.
    Source of DBDB used with this is the Default NorthWind Database which can be downloaded from here http://www.microsoft.com/downloads/details.aspx?FamilyID=06616212-0356-46a0-8da2-eebc53a68034&DisplayLang=en [email_address]
  • 9.
    Connecting to DB[email_address]
  • 10.
    The data accesslayer has four Methods: GetCategories() GetProducts() GetProductsByCategoryID(categoryID) GetProductByProductID(productID) [email_address]
  • 11.
    Typed Dataset andTable Adapter [email_address]
  • 12.
    Table Adapters TableAdaptersprovide communication between your application and a database. More specifically, a TableAdapter connects to a database, executes queries or stored procedures, and either returns a new data table populated with the returned data or fills an existing DataTable with the returned data. TableAdapters are also used to send updated data from your application back to the database. Generic Structure : TableAdapter.Fill TableAdapter.Update TableAdapter.GetData TableAdapter.Insert TableAdapter.ClearBeforeFill [email_address]
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
    User defined queries[email_address]
  • 19.
  • 20.
    Samples The DataTablesreturned by the TableAdapter can be bound to ASP.NET data Web controls, such as the GridView, DetailsView, DropDownList, CheckBoxList, and several others. Sample Code:>> AllProducts.aspx.cs using NorthwindTableAdapters; public partial class AllProducts : System.Web.UI.Page {protected void Page_Load(object sender, EventArgs e) { ProductsTableAdapter productsAdapter = new ProductsTableAdapter(); GridView1.DataSource = productsAdapter.GetProducts(); GridView1.DataBind(); } } [email_address]
  • 21.
  • 22.
    Insert,Update and DeleteSAMPLE CODE:>> ProductsTableAdapter productsAdapter = new ProductsTableAdapter(); // Delete the product with condition productsAdapter.Delete(…); // Update a record with condition productsAdapter.Update(…); // Add a new product productsAdapter.Insert(…); [email_address]
  • 23.
    References http://msdn.microsoft.com/ http://aspnet.4guysfromrolla.comhttp://www.asp.net For my latest updates: http://www.cognobytes.com/biswadipgoswami/Default.aspx [email_address]