TableRow and TableCell : Table « ASP.net Controls « ASP.NET Tutorial

ASP.NET Tutorial
1. ASP.Net Instroduction
2. Language Basics
3. ASP.net Controls
4. HTML Controls
5. Page Lifecycle
6. Response
7. Collections
8. Validation
9. Development
10. File Directory
11. Sessions
12. Cookie
13. Cache
14. Custom Controls
15. Profile
16. Configuration
17. LINQ
18. ADO.net Database
19. Data Binding
20. Ajax
21. Authentication Authorization
22. I18N
23. Mobile
24. WebPart
25. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.NET Tutorial » ASP.net Controls » Table 
3. 26. 7. TableRow and TableCell
<%@ 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);
   }
}
3. 26. Table
3. 26. 1. asp:Table
3. 26. 2. Repeater control in asp:Table
3. 26. 3. Dynamically adding rows to the table (C#)
3. 26. 4. Create table programatically
3. 26. 5. Dynamically adding rows to the table (VB)
3. 26. 6. Using the new Caption attribute (C#)
3. 26. 7. TableRow and TableCell
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.