HTML Controls ASP.Net Tutorial

File:
<%@ Page language="c#" Inherits="TablePictures" CodeFile="Default.aspx.cs" %>
 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


  Table Test


  
  

    Rows:
     
    Cols:
    
    
             Text="Put Border Around Cells" />
    
         Text="Create" />
    
    
  

  


File: Default.aspx.cs
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public partial class TablePictures : System.Web.UI.Page
{
  protected void Page_Load(object sender, System.EventArgs e)
  {
    tbl.BorderStyle = BorderStyle.Inset;
    tbl.BorderWidth = Unit.Pixel(1);
  }
  protected void cmdCreate_Click(object sender, System.EventArgs e)
  {
    tbl.Controls.Clear();
    int rows = Int32.Parse(txtRows.Text);
    int cols = Int32.Parse(txtCols.Text);
    
    for (int i = 0; i < rows; i++)
    {
      TableRow rowNew = new TableRow();
      tbl.Controls.Add(rowNew);
      for (int j = 0; j < cols; j++)
      {
        TableCell cellNew = new TableCell();
        Label lblNew = new Label();
        lblNew.Text = "(" + i.ToString() + "," + j.ToString() + ")";
        System.Web.UI.WebControls.Image imgNew = new System.Web.UI.WebControls.Image();
        imgNew.ImageUrl = "cellpic.png";
        cellNew.Controls.Add(lblNew);
        cellNew.Controls.Add(imgNew);
        if (chkBorder.Checked == true)
        {
          cellNew.BorderStyle = BorderStyle.Inset;
            cellNew.BorderWidth = Unit.Pixel(1);
          }
        rowNew.Controls.Add(cellNew);
      }
    }
  }
}