ADO Database ASP.Net

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="OutputDataSet" %>



    Outputting a DataSet


   
   
       
      
         
      
      Retrieving via indexing:    
      
      
      
      
   

   


File: Default.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class OutputDataSet : System.Web.UI.Page
{
   DataSet ds = null;
   protected void Page_Load(object sender, EventArgs e)
   {
      ds = new DataSet();
      ds.Tables.Add(MakeCustomerData());
      ds.Tables.Add(MakeProductData());
      ds.Tables[1].TableName = "Products";
      grdCustomer.DataSource = ds.Tables[0].DefaultView;
      grdCustomer.DataBind();
      grdProducts.DataSource = ds.Tables["Products"].DefaultView;
      grdProducts.DataBind();
      double sum = 0.0;
      int count = 0;
      foreach (DataRow dr in ds.Tables["Products"].Rows)
      {
         double price = (double)dr["Price"];
         sum += price;
         count++;
      }
      double average = sum / count;
      labSingle.Text = "Average: " + average;
   }
   private DataTable MakeCustomerData()
   {
      DataTable table = new DataTable();
      DataColumn idCol = new DataColumn();
      idCol.ColumnName = "Id";
      idCol.DataType = typeof(Int32);
      idCol.AllowDBNull = false;
      idCol.Unique = true;
      idCol.AutoIncrement = true;
      DataColumn firstNameCol = new DataColumn("FirstName", typeof(string));
      DataColumn lastNameCol = new DataColumn("LastName", typeof(string));
      DataColumn phoneCol = new DataColumn("Phone", typeof(string));
      table.Columns.Add(idCol);
      table.Columns.Add(firstNameCol);
      table.Columns.Add(lastNameCol);
      table.Columns.Add(phoneCol);
      DataRow r1 = table.NewRow();
      r1[1] = "A";
      r1[2] = "a";
      r1[3] = "123-4567";
      table.Rows.Add(r1);
      DataRow r2 = table.NewRow();
      r2["FirstName"] = "B";
      r2["LastName"] = "b";
      r2["Phone"] = "234-1111";
      table.Rows.Add(r2);
      DataRow r3 = table.NewRow();
      r3["FirstName"] = "C";
      r3["LastName"] = "c";
      r3["Phone"] = "345-444";
      table.Rows.Add(r3);
      DataRow r4 = table.NewRow();
      r4["FirstName"] = "D";
      r4["LastName"] = "d";
      r4["Phone"] = "456-2222";
      table.Rows.Add(r4);
      return table;
   }
   private DataTable MakeProductData()
   {
      DataTable table = new DataTable();
      DataColumn idCol = new DataColumn();
      idCol.ColumnName = "Id";
      idCol.DataType = typeof(Int32);
      idCol.AllowDBNull = false;
      idCol.Unique = true;
      idCol.AutoIncrement = true;
      DataColumn nameCol = new DataColumn("Name", typeof(string));
      DataColumn priceCol = new DataColumn("Price", typeof(double));
      table.Columns.Add(idCol);
      table.Columns.Add(nameCol);
      table.Columns.Add(priceCol);
      DataRow r1 = table.NewRow();
      r1[1] = "Book";
      r1[2] = 49.99;
      table.Rows.Add(r1);
      DataRow r2 = table.NewRow();
      r2[1] = "Apple";
      r2[2] = 0.99;
      table.Rows.Add(r2);
      return table;
   }
   protected void btnXml_Click(object sender, EventArgs e)
   {
      string s = ds.GetXml();
      txtXml.Text = s;
   }
}