欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET BorderColor 屬性

定義和用法

BorderColor 屬性用于設(shè)置或返回控件的邊框顏色。

語法

<asp:webcontrol id="id" BorderColor="color" runat="server" />
屬性 描述
color 設(shè)置為控件邊框的顏色。必須是合法的 HTML 顏色。

實例

本例設(shè)置表格的邊框色:

<form runat="server">
<asp:Table runat="server" BorderColor="#FF0000" 
BorderWidth="5" GridLines="vertical">
  <asp:TableRow>
    <asp:TableCell>Hello</asp:TableCell>
    <asp:TableCell>World</asp:TableCell>
  </asp:TableRow>
</asp:Table>
</form>

實例

設(shè)置 Table 控件的 BorderColor