©
本文档使用
php.cn手册 发布
GridLines 属性用于获取或设置 Table 控件的网格线样式。
<asp:Table GridLines="mode" runat="server">
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>