ASP.NET BorderWidth 属性

定义和用法

BorderWidth 属性用于设置或返回控件的边框宽度。

语法

  1. <asp:webcontrol id="id" BorderWidth="length" runat="server" />
描述
length 边框的宽度。必须是合法的.NET长度单位。合法的长度单位是 cm, mm, in, pt, pc 或 px。

实例

本例设置表格的边框宽度:

  1. <form runat="server">
  2. <asp:Table runat="server" BorderWidth="5" GridLines="vertical">
  3. <asp:TableRow>
  4. <asp:TableCell>Hello</asp:TableCell>
  5. <asp:TableCell>World</asp:TableCell>
  6. </asp:TableRow>
  7. </asp:Table>
  8. </form>