<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="TableTest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Table Test</title>
</head>
<body>
<form id="form1" runat="server">
<div id="container">
<h1>Using Table Control</h1>
<h2>Table via Markup</h2>
<asp:Table id="tabMarkup" runat="server" >
<asp:TableRow HorizontalAlign="Center"
TableSection="TableHeader"
BackColor="#FFFF80"
Font-Bold="True">
<asp:TableCell Width="100px" Text="First">
</asp:TableCell>
<asp:TableCell Width="100px" Text="Second">
</asp:TableCell>
</asp:TableRow>
<asp:TableRow HorizontalAlign="Center"
BackColor="#FFFFC0">
<asp:TableCell Text="10.5"></asp:TableCell>
<asp:TableCell Text="36.5"></asp:TableCell>
</asp:TableRow>
<asp:TableRow HorizontalAlign="Center"
BackColor="#FFFFC0">
<asp:TableCell Text="45.3"></asp:TableCell>
<asp:TableCell Text="16.5"></asp:TableCell>
</asp:TableRow>
</asp:Table>
<h2>Table via Programming</h2>
<asp:Table id="tabProgramming" runat="server"></asp:Table>
</div>
</form>
</body>
</html>
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);
}
}
|