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

ASP.NET BorderStyle 屬性

定義和用法

BorderStyle 屬性用于設(shè)置或返回控件的邊框樣式。

語法

<asp:webcontrol id="id" BorderStyle="style" runat="server" />

可能的樣式值

描述
NotSet 未設(shè)置邊框樣式。
None 定義無邊框。
Dotted 定義點狀邊框。
Dashed 定義虛線邊框。
Solid 定義實線邊框。
Double 定義雙實線邊框。兩條邊框的寬度與 border-width 的值相同。
Groove 定義 3D 凹槽邊框。此效果依靠 border-color 值。
Ridge 定義 3D 凸起邊框。此效果依靠 border-color 值。
Inset 定義 3D 內(nèi)嵌邊框。此效果依靠 border-color 值。
Outset 定義 3D 外嵌邊框。此效果依靠 border-color 值。

實例

下面的例子設(shè)置了表格的邊框樣式:

<form runat="server">
<asp:Table runat="server" BorderStyle="dotted" 
BorderWidth="5" GridLines="vertical">
  <asp:TableRow>
    <asp:TableCell>Hello</asp:TableCell>
    <asp:TableCell>World</asp:TableCell>
  </asp:TableRow>
</asp:Table>
</form>

實例

設(shè)置 Table 控件的 BorderStyle
設(shè)置 Table 控件的 BorderStyle(帶有聲明和腳本)