ASP Net Controls ASP.Net Tutorial

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



    Table Test


    
    
    

Using Table Control


      

Table via Markup


      
      
                              TableSection="TableHeader"
                  BackColor="#FFFF80" 
                  Font-Bold="True">
           
          
          
          
        
                          BackColor="#FFFFC0">
          
          
        
                          BackColor="#FFFFC0">
          
          
        
      
      
      

Table via Programming


      
    

    


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 TableTest : System.Web.UI.Page
{
   protected void Page_Load(object sender, EventArgs e)
   {
     TableRow tr1 = new TableRow();
       tr1.BackColor = System.Drawing.Color.Goldenrod;
     tr1.Font.Bold = true;
     TableCell tc1a = new TableCell();
     tc1a.Text = "Author";
     tc1a.Width = 100;
     TableCell tc1b = new TableCell();
     tc1b.Text = "Nationality";
     tc1b.Width = 100;
     tr1.Cells.Add(tc1a);
     tr1.Cells.Add(tc1b);
     TableRow tr2 = new TableRow();
       tr2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
     TableCell tc2a = new TableCell();
     tc2a.Text = "A";
     TableCell tc2b = new TableCell();
     tc2b.Text = "B";
     tr2.Cells.Add(tc2a);
     tr2.Cells.Add(tc2b);
     tabProgramming.Rows.Add(tr1);
     tabProgramming.Rows.Add(tr2);
   }
}