ASP.NET Table GridLines 属性
ASP.NET Table GridLines 属性用于获取或设置 Table 控件的网格线样式
语法
<asp:Table GridLines="mode" runat="server">Some Content</asp:Table>
属性 | 描述 |
---|---|
mode | 为表格规定网格线样式 可能的值: None Horizontal Vertical Both |
范例
下面的范例把 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>