BorderWidth 属性用于设置或返回控件的边框宽度。
<asp:webcontrol id="id" BorderWidth="length"
runat="server" />
属性 | 描述 |
---|---|
length | 边框的宽度。必须是合法的 .NET 长度单位。合法的单位是:cm、mm、in、pt、pc 或 px。 |
下面的例子设置了表格的边框宽度。
<form runat="server">
<asp:Table runat="server" BorderWidth="5"
GridLines="vertical">
<asp:TableRow>
<asp:TableCell>Hello</asp:TableCell>
<asp:TableCell>World</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>