| 1234567891011121314151617181920212223242526 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: TableHeaderCell
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public class TableHeaderCell: TableCell
- {
- public TableHeaderCell(): base(HtmlTextWriterTag.Th)
- {
- }
- }
- }
|