TableRow.TableSection Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
public:
virtual property System::Web::UI::WebControls::TableRowSection TableSection { System::Web::UI::WebControls::TableRowSection get(); void set(System::Web::UI::WebControls::TableRowSection value); };
public virtual System.Web.UI.WebControls.TableRowSection TableSection { get; set; }
member this.TableSection : System.Web.UI.WebControls.TableRowSection with get, set
Public Overridable Property TableSection As TableRowSection
Nilai Properti
Nilai TableRowSection. Default adalah TableBody.
Pengecualian
TableRowSection tidak valid.
Contoh
Contoh kode berikut menunjukkan cara menggunakan TableSection properti untuk menentukan baris header dan footer dalam Table kontrol.
<%@ page language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>TableRow, TableFooter Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>TableRow, TableFooter Example</h1>
<asp:table id="Table1" runat="server" CellPadding="3" CellSpacing="0">
<asp:TableRow TableSection="TableHeader" BackColor="Pink">
<asp:TableCell Text="Header" ColumnSpan="3" />
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Text="(0,0)"></asp:TableCell>
<asp:TableCell Text="(0,1)"></asp:TableCell>
<asp:TableCell Text="(0,2)"></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Text="(1,0)"></asp:TableCell>
<asp:TableCell Text="(1,1)"></asp:TableCell>
<asp:TableCell Text="(1,2)"></asp:TableCell>
</asp:TableRow>
<asp:TableRow TableSection="TableFooter" BackColor="Pink">
<asp:TableCell Text="Footer" ColumnSpan="3" />
</asp:TableRow>
</asp:table>
</div>
</form>
</body>
</html>
<%@ page language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>TableRow, TableFooter Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>TableRow, TableFooter Example</h1>
<asp:table id="Table1" runat="server" CellPadding="3" CellSpacing="0">
<asp:TableRow TableSection="TableHeader" BackColor="Pink">
<asp:TableCell Text="Header" ColumnSpan="3" />
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Text="(0,0)"></asp:TableCell>
<asp:TableCell Text="(0,1)"></asp:TableCell>
<asp:TableCell Text="(0,2)"></asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell Text="(1,0)"></asp:TableCell>
<asp:TableCell Text="(1,1)"></asp:TableCell>
<asp:TableCell Text="(1,2)"></asp:TableCell>
</asp:TableRow>
<asp:TableRow TableSection="TableFooter" BackColor="Pink">
<asp:TableCell Text="Footer" ColumnSpan="3" />
</asp:TableRow>
</asp:table>
</div>
</form>
</body>
</html>
Keterangan
TableSection Gunakan properti untuk mendapatkan atau mengatur tempat TableRow objek ditempatkan dalam Table kontrol. Untuk lokasi tabel yang tersedia, lihat TableRowSection. Tabel berikut mencantumkan nilai yang mungkin.
Bagian baris tabel | Ditampilkan sebagai |
---|---|
TableHeader | Baris header. |
TableBody | Isi meja. |
TableFooter | Baris footer. |
Saat menggunakan sintaks deklaratif, bagian harus dalam urutan header, isi, lalu footer.
Enumerasi TableRowSection memungkinkan Anda membangun situs Web yang dapat diakses menggunakan Table kontrol dengan menambahkan <thead>
elemen , , <tbody>
dan <tfoot>
ke HTML yang dirender ke klien. Jika semua baris dalam tabel berada dalam <tbody>
elemen , informasi bagian tidak dirender. Setidaknya satu baris harus dalam elemen non-isi.
Nilai properti ini disimpan dalam status tampilan.