Dynamically adding rows to the table (VB) : Table « ASP.net Controls « ASP.NET Tutorial






<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Dim tr As New TableRow()
       
        Dim fname As New TableCell()
        fname.Text = "Scott"
        tr.Cells.Add(fname)
        
        Dim lname As New TableCell()
        lname.Text = "Hanselman"
        tr.Cells.Add(lname)
        
        Table1.Rows.Add(tr)
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Table</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Table ID="Table1" Runat="server">
           <asp:TableRow ID="TableRow1" Runat="server" Font-Bold="True"
            ForeColor="Black" BackColor="Silver">
              <asp:TableHeaderCell>First Name</asp:TableHeaderCell>
              <asp:TableHeaderCell>Last Name</asp:TableHeaderCell>
           </asp:TableRow>
           <asp:TableRow>
              <asp:TableCell>A</asp:TableCell>
              <asp:TableCell>B</asp:TableCell>
           </asp:TableRow>
          <asp:TableRow>
              <asp:TableCell>C</asp:TableCell>
              <asp:TableCell>D</asp:TableCell>
           </asp:TableRow>
        </asp:Table>
    </div>
    </form>
</body>
</html>








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