Table 控件
定义和用法
GridLines 属性用于获取或设置 Table 控件的网格线样式。
语法
<asp:Table GridLines="
mode" runat="server">
Some Content
</asp:Table>
Some Content
</asp:Table>
属性 | 描述 |
---|---|
mode | 为表格规定网格线样式。 可能的值:
|
实例
下面的实例把 GridLines 属性设置为 "Both":
<form runat="server"> <asp:Table id="tab1" runat="server" GridLines="Both"> <asp:TableRow> <asp:TableCell> Hello! </asp:TableCell> <asp:TableCell> Hello! </asp:TableCell> </asp:TableRow> </asp:Table> </form>
Table 控件